![]() |
Bridges-Java
3.1.2
Bridges(JavaAPI)
|
Classes | |
| class | CircSLelementIterator |
Public Member Functions | |
| CircSLelement () | |
| CircSLelement (String label, E e) | |
| CircSLelement (E e, CircSLelement< E > next) | |
| CircSLelement (CircSLelement< E > next) | |
| String | getDataStructType () |
| CircSLelement< E > | getNext () |
| Iterator< E > | iterator () |
| String | toString () |
Public Member Functions inherited from bridges.base.SLelement< E > | |
| SLelement () | |
| SLelement (String label, E e) | |
| SLelement (E e, SLelement< E > next) | |
| SLelement (E e) | |
| SLelement (SLelement< E > next) | |
| String | getDataStructType () |
| SLelement< E > | getNext () |
| void | setNext (SLelement< E > next) |
| String | toString () |
| String | getDataStructureRepresentation () |
| Iterator< E > | iterator () |
Public Member Functions inherited from bridges.base.Element< E > | |
| String | getDataStructType () |
| Get the Element type name. More... | |
| Element () | |
| Element constructor. More... | |
| Element (E val) | |
| the constructor of Element More... | |
| Element (String label, E val) | |
| Constructor of Element. More... | |
| Element (Element< E > original) | |
| performing deep copy of an element when needed More... | |
| String | getIdentifier () |
| void | setSize (double sz) |
| void | setColor (Color col) |
| Color | getColor () |
| void | setOpacity (float opacity) |
| double | getOpacity () |
| void | setShape (String aShape) |
| ElementVisualizer | getVisualizer () |
| void | setVisualizer (ElementVisualizer visualizer) |
| LinkVisualizer | getLinkVisualizer (Element< E > el) |
| Returns the Element's link visualizer object. More... | |
| String | getClassName () |
| int | compareTo (Element< E > e1) |
| boolean | equals (Element< E > e1) |
| String | getElementRepresentation () |
| String | getDataStructureRepresentation () |
| String | getLinkRepresentation (LinkVisualizer lv, String src, String dest) |
| String | getLabel () |
| void | setLabel (String label) |
| E | getValue () |
| void | setValue (E value) |
| double | getSize () |
| void | setColor (String col) |
| Change the element color. More... | |
| String | getShape () |
| void | setLocation (double locX, double locY) |
| Set the location attributes of an element. More... | |
| double | getLocationX () |
| double | getLocationY () |
| String | toString () |
Public Member Functions inherited from bridges.base.DataStruct | |
| abstract String | getDataStructType () |
| abstract String | getDataStructureRepresentation () |
Additional Inherited Members | |
Protected Member Functions inherited from bridges.base.SLelement< E > | |
| void | getListElements (Vector< Element< E >> nodes) |
Protected Member Functions inherited from bridges.base.Element< E > | |
| void | setLinkVisualizer (Element< E > el) |
| Sets the link from this element to a new incoming element. More... | |
| void | removeLinkVisualizer (Element< E > el) |
| Removes the link from this element to a new incoming element. More... | |
| void | validateVal (E value) |
Protected Attributes inherited from bridges.base.SLelement< E > | |
| SLelement< E > | next = null |
Protected Attributes inherited from bridges.base.DataStruct | |
| String | QUOTE = "\"" |
| bridges.base.CircSLelement< E >.CircSLelement | ( | ) |
This constructor creates an CircSLelement object and sets its next pointer to itself
| bridges.base.CircSLelement< E >.CircSLelement | ( | String | label, |
| E | e | ||
| ) |
This constructor creates an CircSLelement object of value "e" and label "label" and sets the next pointer to null
| label | the label of CircSLelement that shows up on the Bridges visualization |
| e | the generic object that this CircSLelement will hold |
| bridges.base.CircSLelement< E >.CircSLelement | ( | E | e, |
| CircSLelement< E > | next | ||
| ) |
Creates a new element with value "e" and sets the next pointer to the CircSLelement referenced by the "next" argument
| e | the generic object that this CircSLelement will hold |
| next | the CircSLelement that should be assigned to the next pointer |
| bridges.base.CircSLelement< E >.CircSLelement | ( | CircSLelement< E > | next | ) |
Creates a new element and sets the next pointer to the CircSLelement "next"
| next | the CircSLelement that should be assigned to the next pointer |
| String bridges.base.CircSLelement< E >.getDataStructType | ( | ) |
This method gets the data structure type
| CircSLelement<E> bridges.base.CircSLelement< E >.getNext | ( | ) |
Retrieves the next CircSLelement
| Iterator<E> bridges.base.CircSLelement< E >.iterator | ( | ) |
Return an iterator over the elements in the array. This is generally not called directly, but is called by Java when used in a "simple" for loops
| String bridges.base.CircSLelement< E >.toString | ( | ) |
1.8.13