Uses of Interface
org.pathvisio.libgpml.model.Groupable
Package | Description |
---|---|
org.pathvisio.libgpml.model |
Classes representing the pathway "model".
|
-
Uses of Groupable in org.pathvisio.libgpml.model
Classes in org.pathvisio.libgpml.model that implement Groupable Modifier and Type Class Description class
DataNode
This class stores information for a DataNode pathway element.class
DataNode.State
This class stores all information relevant to a State pathway element.class
GraphicalLine
This class stores information for GraphicalLine pathway element.class
Group
This class stores all information relevant to a Group pathway element.class
Interaction
This class stores information for an Interaction pathway element.class
Label
This class stores all information relevant to a Label pathway element.class
LineElement
This abstract class stores information for a Line pathway element, e.g.class
Shape
This class stores all information relevant to a Shape pathway element.class
ShapedElement
This class stores information for shaped pathway elementDataNode
,DataNode.State
,Label
,Shape
, andGroup
.Fields in org.pathvisio.libgpml.model with type parameters of type Groupable Modifier and Type Field Description private java.util.List<Groupable>
Group. pathwayElements
Methods in org.pathvisio.libgpml.model that return types with arguments of type Groupable Modifier and Type Method Description java.util.List<Groupable>
Group. getPathwayElements()
Returns the list of pathway element members of the group.Methods in org.pathvisio.libgpml.model with parameters of type Groupable Modifier and Type Method Description void
Group. addPathwayElement(Groupable pathwayElement)
Adds the given pathway element to pathwayElements list of this group.boolean
Group. hasPathwayElement(Groupable pathwayElement)
Checks whether pathwayElements has the given pathwayElement.void
Group. removePathwayElement(Groupable pathwayElement)
Removes the given pathway element from pathwayElements list of the group.Method parameters in org.pathvisio.libgpml.model with type arguments of type Groupable Modifier and Type Method Description void
Group. addPathwayElements(java.util.List<? extends Groupable> pathwayElements)
Adds the given list of pathway elements to pathwayElements list of this group.