| Package | com.endeca.tools.pagebuilder.events |
| Class | public final class ContentModelEventKind |
kind
property of the ContentModelEvent class. These constants
indicate which kind of change was made to the content model.
See also
| Constant | Defined by | ||
|---|---|---|---|
| ADD : String = "add" [static]
Indicates that a collection added an item or items.
| ContentModelEventKind | ||
| MOVE : String = "move" [static]
Indicates that the item has moved from the position identified
by the
ContentModelEvent
oldLocation property to the
position identified by the location property. | ContentModelEventKind | ||
| REFRESH : String = "refresh" [static]
Indicates that a collection applied a sort, a filter, or both.
| ContentModelEventKind | ||
| REMOVE : String = "remove" [static]
Indicates that a collection removed an item or items.
| ContentModelEventKind | ||
| REPLACE : String = "replace" [static]
Indicates that the item at the position identified by the
ContentModelEvent location
property has been replaced. | ContentModelEventKind | ||
| RESET : String = "reset" [static]
Indicates that a collection has changed so drastically that
a reset is required.
| ContentModelEventKind | ||
| UPDATE : String = "update" [static]
Indicates that the value of a property changed.
| ContentModelEventKind | ||
| ADD | constant |
public static const ADD:String = "add"Indicates that a collection added an item or items.
See also
| MOVE | constant |
public static const MOVE:String = "move"
Indicates that the item has moved from the position identified
by the ContentModelEvent
oldLocation property to the
position identified by the location property.
See also
| REFRESH | constant |
public static const REFRESH:String = "refresh"
Indicates that a collection applied a sort, a filter, or both.
This change can potentially be easier to handle than a
RESET.
| REMOVE | constant |
public static const REMOVE:String = "remove"Indicates that a collection removed an item or items.
See also
| REPLACE | constant |
public static const REPLACE:String = "replace"
Indicates that the item at the position identified by the
ContentModelEvent location
property has been replaced.
See also
| RESET | constant |
public static const RESET:String = "reset"Indicates that a collection has changed so drastically that a reset is required.
| UPDATE | constant |
public static const UPDATE:String = "update"Indicates that the value of a property changed.
See also