com.ibm.xtools.patterns.framework
Class PatternExpansionStatus
+-- Object
+-- PatternExpansionStatus
final public Class PatternExpansionStatus
extends Object
Represents the pattern expansion
status class that serves as the return value for expand and updates methods
used within the pattern expansion execution path.
| Fields |
|---|
| final static public java.lang.String | DO_NOT_UPDATE_DEPENDENTS
A
type safe enumeration value to use when a pattern expansion status value
is needed. This value indicates that pattern expansion must not continue,
and therefore dependents must not be notified of an expansion.
|
| final static public java.lang.String | UPDATE_DEPENDENTS
A
type safe enumeration value to use when a pattern expansion status value
is needed. This value indicates that pattern expansion must continue, and
therefore dependents must be notified of an expansion. This is the most common
value used for this type. Typically the notification will always continue
and only special cases would use the DO_NOT_UPDATE_DEPENDENTS value.
|