This class is used to create doubly linked element objects.
- Author
- Mihai Mehedint, Kalpathi Subramanian
- Date
- 6/22/16, 1/7/17, 5/17/17, 7/14/19
This class extends Element and takes a generic parameter E representing application specific data. This element forms the basic building block for doubly linked lists. Doubly linked elements have two links, "next" and "previous", that point to the previous and succeeding nodes along the list.
Elements contain a visualizer (ElementVisualizer) object for setting visual attributes (color, shape, opacity, size), necessary for displaying them in a web browser.
Elements also have a LinkVisualizer object that is used when they are linked to another element, appropriate for setting link attributes, such as in linked lists, between the current element and its next or previous nodes.
- See also
- Example Tutorial at
http://bridgesuncc.github.io/tutorials/DoublyLinkedList.html
- Parameters
-
E | The generic parameter object that is part of this element, representing application specific data. |
|
| DLelement () |
|
| DLelement (String label, E e) |
|
| DLelement (DLelement< E > next, DLelement< E > prev) |
|
| DLelement (E e, DLelement< E > next, DLelement< E > prev) |
|
String | getDataStructType () |
|
DLelement< E > | getNext () |
|
void | setNext (DLelement< E > nxt) |
|
DLelement< E > | getPrev () |
|
void | setPrev (DLelement< E > prv) |
|
String | getDataStructureRepresentation () |
|
| 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< SLelement< E > > | iterator () |
|
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 () |
|
abstract String | getDataStructType () |
|
abstract String | getDataStructureRepresentation () |
|