public abstract class GraphicElement extends AbstractElement
Each graphic element references a style, a graphic graph and has a label.
The element also defines the basic behaviour to reload the style when needed, defines abstract methods to set and get the position and bounds in spaces of the element, and to do appropriate actions when specific predefined attributes change (most of them starting with the prefix "ui.").
The graphic element has the ability to store attributes like any other graph element, however the attributes stored by the graphic element are restricted. There is a filter on the attribute adding methods that let pass only :
Modifier and Type | Class and Description |
---|---|
static interface |
GraphicElement.SwingElementRenderer
Interface for renderers registered in each style group.
|
AbstractElement.AttributeChangeEvent
Modifier and Type | Field and Description |
---|---|
java.lang.Object |
component
Associated GUI component.
|
boolean |
hidden
Do not show.
|
java.lang.String |
label
The label or null if not specified.
|
StyleGroup |
style
The node style.
|
Constructor and Description |
---|
GraphicElement(java.lang.String id,
GraphicGraph graph)
New element.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getComponent()
The associated GUI component.
|
java.lang.String |
getLabel()
Label or null if not set.
|
abstract Selector.Type |
getSelectorType()
Type of selector for the graphic element (Node, Edge, Sprite ?).
|
StyleGroup |
getStyle()
Style group.
|
abstract double |
getX()
Abscissa of the element, always in GU (graph units).
|
abstract double |
getY()
Ordinate of the element, always in GU (graph units).
|
abstract double |
getZ()
Depth of the element, always in GU (graph units).
|
abstract void |
move(double x,
double y,
double z)
Try to force the element to move at the give location in graph units (GU).
|
GraphicGraph |
myGraph() |
void |
setAttribute(java.lang.String attribute,
java.lang.Object... values)
Add or replace the value of an attribute.
|
void |
setComponent(java.lang.Object component)
Set the GUI component of this element.
|
attributeKeys, clearAttributes, getAttribute, getAttribute, getAttributeCount, getFirstAttributeOf, getFirstAttributeOf, getId, getIndex, hasAttribute, hasAttribute, removeAttribute, toString
public java.lang.String label
public StyleGroup style
public java.lang.Object component
public boolean hidden
public GraphicElement(java.lang.String id, GraphicGraph graph)
public GraphicGraph myGraph()
public abstract Selector.Type getSelectorType()
public StyleGroup getStyle()
public java.lang.String getLabel()
public abstract double getX()
public abstract double getY()
public abstract double getZ()
public java.lang.Object getComponent()
public abstract void move(double x, double y, double z)
x
- The new X.y
- The new Y.z
- the new Z.public void setComponent(java.lang.Object component)
component
- The component.public void setAttribute(java.lang.String attribute, java.lang.Object... values)
Element
setAttribute
in interface Element
setAttribute
in class AbstractElement
attribute
- The attribute name.values
- The attribute value or set of values.