com.dlsc.flexgantt.model.eventline
Enum EventlineModelEvent.ID

java.lang.Object
  extended by java.lang.Enum<EventlineModelEvent.ID>
      extended by com.dlsc.flexgantt.model.eventline.EventlineModelEvent.ID
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EventlineModelEvent.ID>
Enclosing class:
EventlineModelEvent

public static enum EventlineModelEvent.ID
extends java.lang.Enum<EventlineModelEvent.ID>

An enumeration of IDs for events issued by an IEventlineModel.

Since:
1.0
See Also:
IEventlineModelListener, IEventlineModel.addEventlineModelListener(IEventlineModelListener)

Enum Constant Summary
EVENTLINE_OBJECT_TIME_SPAN_CHANGED
          An ID for events fired by an IEventlineModel when the time span of objects (stored in the model) has changed.
EVENTLINE_OBJECTS_ADDED
          An ID for events fired by an IEventlineModel when objects were added to the model.
EVENTLINE_OBJECTS_REMOVED
          An ID for events fired by an IEventlineModel when objects were removed from the model.
 
Method Summary
static EventlineModelEvent.ID valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EventlineModelEvent.ID[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

EVENTLINE_OBJECTS_ADDED

public static final EventlineModelEvent.ID EVENTLINE_OBJECTS_ADDED
An ID for events fired by an IEventlineModel when objects were added to the model.

Since:
1.0

EVENTLINE_OBJECTS_REMOVED

public static final EventlineModelEvent.ID EVENTLINE_OBJECTS_REMOVED
An ID for events fired by an IEventlineModel when objects were removed from the model.

Since:
1.0

EVENTLINE_OBJECT_TIME_SPAN_CHANGED

public static final EventlineModelEvent.ID EVENTLINE_OBJECT_TIME_SPAN_CHANGED
An ID for events fired by an IEventlineModel when the time span of objects (stored in the model) has changed.

Since:
1.0
Method Detail

values

public static final EventlineModelEvent.ID[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(EventlineModelEvent.ID c : EventlineModelEvent.ID.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static EventlineModelEvent.ID valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name