public abstract class Element
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static int |
anchorSize
Default anchor size in pixels.
|
static java.awt.Rectangle |
EmptyRectangle
Empty rectangle.
|
Modifier and Type | Method and Description |
---|---|
void |
accept(Visitor visitor)
Accept a visitor and dispatch.
|
abstract Element |
clone()
Make an exact copy, delegated to subclasses.
|
abstract boolean |
contains(java.awt.Point p)
Does this element contain the given point.
|
void |
draw(java.awt.Graphics g)
Draw self into the given graphics context using the drawElement method.
|
abstract void |
drawElement(java.awt.Graphics g)
Draw self into the given graphics context.
|
java.awt.Rectangle[] |
getAnchors()
Access anchors for element.
|
java.awt.Rectangle |
getBoundingBox()
Returns bounding box of the given element.
|
Element |
getParent()
Return parent of Element.
|
Style |
getStyle()
Retrieve style for this element
|
boolean |
hasParent()
Check if element is part of a group.
|
boolean |
isSelected()
Query selected status of element.
|
Element |
outermostGroup()
When elements are contained in a Group, this can be used to find the outermost group.
|
Element |
removeParent()
Clear parent reference.
|
void |
resetAnchors()
Reset anchors; useful as a catch-all mechanism to force recalculation when changes occur.
|
void |
setBoundingBox(java.awt.Rectangle r)
Update the bounding box.
|
Element |
setParent(Group parent)
Set the enclosing element (a group) for this element.
|
Element |
setSelected(boolean flag)
Set whether element is selected.
|
Element |
setStyle(Style style)
Update style for this element.
|
public static final java.awt.Rectangle EmptyRectangle
public static final int anchorSize
public Element setParent(Group parent)
parent
- place this into a group identified by this elementpublic Element removeParent()
public boolean hasParent()
public Element getParent() throws java.util.NoSuchElementException
hasParent()
, will get NoSuchElementException Exception.java.util.NoSuchElementException
- If did not validate that a parent exists, this exception will be thrown.public Element outermostGroup()
public java.awt.Rectangle[] getAnchors()
public void resetAnchors()
public java.awt.Rectangle getBoundingBox()
public void setBoundingBox(java.awt.Rectangle r)
r
- new bounding rectangle for the element.public boolean isSelected()
public Element setSelected(boolean flag)
flag
- determines whether element should be selected.public void accept(Visitor visitor)
visitor
- Visitor that performs necessary operations.public Style getStyle()
public Element setStyle(Style style)
style
- new style to associate with elementpublic abstract Element clone()
clone
in class java.lang.Object
public abstract void drawElement(java.awt.Graphics g)
g
- Graphics object into which to drawpublic void draw(java.awt.Graphics g)
g
- Graphics object into which to drawpublic abstract boolean contains(java.awt.Point p)
p
- point to query