|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<IssuesManagerEventType>
net.refractions.udig.issues.listeners.IssuesManagerEventType
public enum IssuesManagerEventType
Enumerates the different types of events that IIssuesManager
raises
Enum Constant Summary | |
---|---|
DIRTY_ISSUE
Indicates that an issue in the issues list has become dirty or clean. |
|
ISSUES_LIST_CHANGE
Indicates that the issues list being used has been changed. |
|
SAVE
Indicates that all the dirty issues are saved. |
Method Summary | |
---|---|
static IssuesManagerEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static IssuesManagerEventType[] |
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 |
---|
public static final IssuesManagerEventType ISSUES_LIST_CHANGE
The old and new values are the old and new list
public static final IssuesManagerEventType DIRTY_ISSUE
IRemoteIssuesList
.
The old and new values are the old and new dirty state of the Manager
public static final IssuesManagerEventType SAVE
new value is null and old value is a collection of the issues that were saved.
Method Detail |
---|
public static final IssuesManagerEventType[] values()
for(IssuesManagerEventType c : IssuesManagerEventType.values()) System.out.println(c);
public static IssuesManagerEventType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |