Package jpicedt.graphic.event
Class DrawingEvent.EventType
- java.lang.Object
-
- jpicedt.graphic.event.DrawingEvent.EventType
-
- Enclosing interface:
- DrawingEvent
public static class DrawingEvent.EventType extends java.lang.Objectenumeration for DrawingEvent types
-
-
Field Summary
Fields Modifier and Type Field Description static DrawingEvent.EventTypeATTRIBUTE_CHANGEan element attribute or attribute set changedstatic DrawingEvent.EventTypeGEOMETRY_CHANGEan element geometry changedstatic DrawingEvent.EventTypeINSERTa child was inserted to the changed-elementstatic DrawingEvent.EventTypeREMOVEa child was removed from the changed-elementstatic DrawingEvent.EventTypeREPLACEa child was replaced by another element in the changed-elementstatic DrawingEvent.EventTypeTEXT_CHANGEthe text content of a text element changed
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()
-
-
-
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
-
TEXT_CHANGE
public static final DrawingEvent.EventType TEXT_CHANGE
the text content of a text element changed
-
INSERT
public static final DrawingEvent.EventType INSERT
a child was inserted to the changed-element
-
REMOVE
public static final DrawingEvent.EventType REMOVE
a child was removed from the changed-element
-
REPLACE
public static final DrawingEvent.EventType REPLACE
a child was replaced by another element in the changed-element
-
-