Class mxEvent


  • public class mxEvent
    extends java.lang.Object
    Contains all global constants.
    • Field Detail

      • REMOVE_CELLS_FROM_PARENT

        public static final java.lang.String REMOVE_CELLS_FROM_PARENT
        See Also:
        Constant Field Values
      • UPDATE_CELL_SIZE

        public static final java.lang.String UPDATE_CELL_SIZE
        See Also:
        Constant Field Values
      • SCALE_AND_TRANSLATE

        public static final java.lang.String SCALE_AND_TRANSLATE
        See Also:
        Constant Field Values
      • CHANGE

        public static final java.lang.String CHANGE
        Holds the name for the change event. First and only argument in the argument array is the list of mxAtomicGraphChanges that have been executed on the model.
        See Also:
        Constant Field Values
      • EXECUTE

        public static final java.lang.String EXECUTE
        Holds the name for the execute event. First and only argument in the argument array is the mxAtomicGraphChange that has been executed on the model. This event fires before the change event.
        See Also:
        Constant Field Values
      • BEFORE_UNDO

        public static final java.lang.String BEFORE_UNDO
        Holds the name for the beforeUndo event. First and only argument in the argument array is the current edit that is currently in progress in the model. This event fires before notify is called on the currentEdit in the model.
        See Also:
        Constant Field Values
      • NOTIFY

        public static final java.lang.String NOTIFY
        Holds the name for the norify event. First and only argument in the argument array is the list of mxAtomicGraphChanges that have been executed on the model. This event fires after the change event.
        See Also:
        Constant Field Values
      • BEGIN_UPDATE

        public static final java.lang.String BEGIN_UPDATE
        Holds the name for the beginUpdate event. This event has no arguments and fires after the updateLevel has been changed in model.
        See Also:
        Constant Field Values
      • END_UPDATE

        public static final java.lang.String END_UPDATE
        Holds the name for the endUpdate event. This event has no arguments and fires after the updateLevel has been changed in the model. First argument is the currentEdit.
        See Also:
        Constant Field Values
      • MARK

        public static java.lang.String MARK
        Holds the name for the mark event, which fires after a cell has been marked. First and only argument in the array is the cell state that has been marked or null, if no state has been marked. To add a mark listener to the cell marker: addListener( mxEvent.MARK, new mxEventListener() { public void invoke(Object source, Object[] args) { cellMarked((mxCellMarker) source, (mxCellState) args[0]); } });
      • ROOT

        public static java.lang.String ROOT
      • LAYOUT_CELLS

        public static java.lang.String LAYOUT_CELLS
      • START

        public static java.lang.String START
      • CONTINUE

        public static java.lang.String CONTINUE
      • STOP

        public static java.lang.String STOP
    • Constructor Detail

      • mxEvent

        public mxEvent()