Uses of Class
org.pathvisio.libgpml.model.LineElement.LinePoint
Package | Description |
---|---|
org.pathvisio.libgpml.model |
Classes representing the pathway "model".
|
-
Uses of LineElement.LinePoint in org.pathvisio.libgpml.model
Fields in org.pathvisio.libgpml.model declared as LineElement.LinePoint Modifier and Type Field Description (package private) LineElement.LinePoint
TestGraph. end
private LineElement.LinePoint
TestLinePoint. pt3
private LineElement.LinePoint
TestLinePoint. pt4
(package private) LineElement.LinePoint
TestGraph. start
Fields in org.pathvisio.libgpml.model with type parameters of type LineElement.LinePoint Modifier and Type Field Description private java.util.List<LineElement.LinePoint>
LineElement. linePoints
Methods in org.pathvisio.libgpml.model that return LineElement.LinePoint Modifier and Type Method Description LineElement.LinePoint
LineElement. getEndLinePoint()
Returns the end (last) point of points list.LineElement.LinePoint
LineElement. getStartLinePoint()
Returns the start (first) point of points list.Methods in org.pathvisio.libgpml.model that return types with arguments of type LineElement.LinePoint Modifier and Type Method Description java.util.List<LineElement.LinePoint>
LineElement. getLinePoints()
Get the points for this line.Methods in org.pathvisio.libgpml.model with parameters of type LineElement.LinePoint Modifier and Type Method Description void
LineElement.LinePoint. moveTo(LineElement.LinePoint linePoint)
Moves the xy and relXY coordinates for this line point to the coordinate values of the given line point.void
LineElement. setEndLinePoint(LineElement.LinePoint linePoint)
Sets end linePoint coordinates to the coordinates of the given linePoint.void
LineElement. setStartLinePoint(LineElement.LinePoint linePoint)
Sets start linePoint coordinates to the coordinates of the given linePoint.Method parameters in org.pathvisio.libgpml.model with type arguments of type LineElement.LinePoint Modifier and Type Method Description private void
LineElement. addLinePoints(java.util.List<LineElement.LinePoint> points)
Adds all given points to the linePoints list.protected void
GPML2021Reader. readPointElementRefs(PathwayModel pathwayModel, java.util.Map<org.jdom2.Element,LineElement.LinePoint> elementToPoint)
Reads elementRefsetElementRef(org.pathvisio.libgpml.model.GraphLink.LinkableTo)
for pathway model points.protected void
GPML2013aReader. readPoints(LineElement lineElement, org.jdom2.Element ln, java.util.Set<java.lang.String> elementIdSet, java.util.Map<org.jdom2.Element,LineElement.LinePoint> elementToPoint)
Reads pointsLineElement.LinePoint
for pathway model line pathway elements.protected void
GPML2021Reader. readPoints(LineElement lineElement, org.jdom2.Element wyps, java.util.Map<org.jdom2.Element,LineElement.LinePoint> elementToPoint)
Reads pointLineElement.LinePoint
information for line element.private void
LineElement. removeLinePoints(java.util.List<LineElement.LinePoint> toRemove)
Removes all points from the given line points list.void
LineElement. setLinePoints(java.util.List<LineElement.LinePoint> points)
Sets linePoints to the given list of LinePoints.