|
|||||||||
Home >> All >> jpicedt >> graphic >> [ event overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: ![]() ![]() ![]() |
DETAIL: FIELD | CONSTR | METHOD |
jpicedt.graphic.event
Class DrawingEvent.EventType

java.lang.Objectjpicedt.graphic.event.DrawingEvent.EventType
- Enclosing class:
- DrawingEvent
- public static class DrawingEvent.EventType
- extends java.lang.Object
enumeration for DrawingEvent types
Field Summary | |
static DrawingEvent.EventType |
ATTRIBUTE_CHANGE
an element attribute or attribute set changed |
static DrawingEvent.EventType |
GEOMETRY_CHANGE
an element geometry changed |
static DrawingEvent.EventType |
INSERT
a child was inserted |
static DrawingEvent.EventType |
REMOVE
a child was removed |
static DrawingEvent.EventType |
REPLACE
a child was replaced by another element |
private java.lang.String |
type
|
Constructor Summary | |
private |
DrawingEvent.EventType(java.lang.String str)
|
Method Summary | |
java.lang.String |
toString()
Convert this Object to a human-readable String. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
GEOMETRY_CHANGE
public static final DrawingEvent.EventType GEOMETRY_CHANGE
- an element geometry changed
ATTRIBUTE_CHANGE
public static final DrawingEvent.EventType ATTRIBUTE_CHANGE
- an element attribute or attribute set changed
INSERT
public static final DrawingEvent.EventType INSERT
- a child was inserted
REMOVE
public static final DrawingEvent.EventType REMOVE
- a child was removed
REPLACE
public static final DrawingEvent.EventType REPLACE
- a child was replaced by another element
type
private java.lang.String type
Constructor Detail |
DrawingEvent.EventType
private DrawingEvent.EventType(java.lang.String str)
Method Detail |
toString
public java.lang.String toString()
- Description copied from class:
java.lang.Object
- Convert this Object to a human-readable String.
There are no limits placed on how long this String
should be or what it should contain. We suggest you
make it as intuitive as possible to be able to place
it into System.out.println() 55
and such.
It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.
This method will be called when performing string concatenation with this object. If the result is
null
, string concatenation will instead use"null"
.The default implementation returns
getClass().getName() + "@" + Integer.toHexString(hashCode())
.
|
|||||||||
Home >> All >> jpicedt >> graphic >> [ event overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: ![]() ![]() ![]() |
DETAIL: FIELD | CONSTR | METHOD |