Packagecom.endeca.tools.pagebuilder.events
Classpublic final class ContentModelEventKind

Contains constants for each valid value of the kind property of the ContentModelEvent class. These constants indicate which kind of change was made to the content model.

See also

ContentModelEvent.kind


Public Constants
 ConstantDefined 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
Constant detail
ADDconstant
public static const ADD:String = "add"

Indicates that a collection added an item or items.

See also

MOVEconstant 
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

REFRESHconstant 
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.

REMOVEconstant 
public static const REMOVE:String = "remove"

Indicates that a collection removed an item or items.

See also

REPLACEconstant 
public static const REPLACE:String = "replace"

Indicates that the item at the position identified by the ContentModelEvent location property has been replaced.

See also

RESETconstant 
public static const RESET:String = "reset"

Indicates that a collection has changed so drastically that a reset is required.

UPDATEconstant 
public static const UPDATE:String = "update"

Indicates that the value of a property changed.

See also