net.sourceforge.plantuml.elk.proxy.graph.ElkEdgeSection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml Show documentation
Show all versions of plantuml Show documentation
PlantUML is a component that allows to quickly write :
* sequence diagram,
* use case diagram,
* class diagram,
* activity diagram,
* component diagram,
* state diagram
* object diagram
package net.sourceforge.plantuml.elk.proxy.graph;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Objects;
import net.sourceforge.plantuml.elk.proxy.Reflect;
public class ElkEdgeSection {
public final Object obj;
public ElkEdgeSection(Object obj) {
this.obj = Objects.requireNonNull(obj);
}
@Override
public int hashCode() {
return this.obj.hashCode();
}
@Override
public boolean equals(Object other) {
return this.obj.equals(((ElkEdgeSection) other).obj);
}
public double getStartX() {
return (Double) Reflect.call(obj, "getStartX");
}
public double getStartY() {
return (Double) Reflect.call(obj, "getStartY");
}
public double getEndX() {
return (Double) Reflect.call(obj, "getEndX");
}
public double getEndY() {
return (Double) Reflect.call(obj, "getEndY");
}
public Collection getBendPoints() {
final List result = new ArrayList<>();
Collection internal = (Collection) Reflect.call(obj, "getBendPoints");
for (Object element : internal) {
result.add(new ElkBendPoint(element));
}
return result;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy