public static enum GanttChartModelEvent.ID extends Enum<GanttChartModelEvent.ID>
Enum Constant and Description |
---|
LAYER_ADDED
Used when a layer was added to the Gantt chart model.
|
LAYER_REMOVED
Used when a layer was removed from a Gantt chart model.
|
RELATIONSHIP_ADDED
Used when a relationship was added to gantt chart model.
|
RELATIONSHIP_CHANGED
Used when a relationship changed some of its attributes.
|
RELATIONSHIP_REMOVED
Used when a relationship was removed from the gantt chart model.
|
SPREADSHEET_ADDED
Used when a spreadsheet was added to the Gantt chart model.
|
SPREADSHEET_REMOVED
Used when a spreadsheet was removed from a Gantt chart model.
|
SPREADSHEET_VALUE_CHANGED
Used when a spreadsheet value was changed.
|
TIMELINE_OBJECT_CHANGED
Constant used to indicate that a timeline object has been changed in
some way (new time span, new percentage complete, new capacity, ...).
|
TIMELINE_OBJECTS_ADDED
Constant used to indicate that timeline objects have been added to
the model.
|
TIMELINE_OBJECTS_REMOVED
Constant used to indicate that timeline objects have been removed
from the model.
|
Modifier and Type | Method and Description |
---|---|
static GanttChartModelEvent.ID |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GanttChartModelEvent.ID[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GanttChartModelEvent.ID LAYER_ADDED
DefaultGanttChartModel.addLayer(ILayer)
public static final GanttChartModelEvent.ID LAYER_REMOVED
DefaultGanttChartModel.removeLayer(ILayer)
public static final GanttChartModelEvent.ID SPREADSHEET_ADDED
DefaultGanttChartModel.addSpreadsheet(ISpreadsheet)
public static final GanttChartModelEvent.ID SPREADSHEET_REMOVED
DefaultGanttChartModel.removeSpreadsheet(ISpreadsheet)
public static final GanttChartModelEvent.ID TIMELINE_OBJECTS_ADDED
DefaultGanttChartModel.addTimelineObjects(IGanttChartNode,
ILayer, Collection)
public static final GanttChartModelEvent.ID TIMELINE_OBJECTS_REMOVED
DefaultGanttChartModel.removeTimelineObjects(IGanttChartNode,
ILayer, Collection)
public static final GanttChartModelEvent.ID TIMELINE_OBJECT_CHANGED
DefaultGanttChartModel.timelineObjectChanged(ITimelineObject)
public static final GanttChartModelEvent.ID RELATIONSHIP_ADDED
DefaultGanttChartModel.addRelationships(Collection)
public static final GanttChartModelEvent.ID RELATIONSHIP_REMOVED
public static final GanttChartModelEvent.ID RELATIONSHIP_CHANGED
public static final GanttChartModelEvent.ID SPREADSHEET_VALUE_CHANGED
public static GanttChartModelEvent.ID[] values()
for (GanttChartModelEvent.ID c : GanttChartModelEvent.ID.values()) System.out.println(c);
public static GanttChartModelEvent.ID valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2006–2020 Dirk Lemmermann Software & Consulting. All rights reserved.