Class PathEntryVariableChangeEvent

  • All Implemented Interfaces:
    java.io.Serializable

    public class PathEntryVariableChangeEvent
    extends java.util.EventObject
    Describes a change in path variable.
    See Also:
    Serialized Form
    Restriction:
    This class is not intended to be subclassed by clients.
    Restriction:
    This class is not intended to be instantiated by clients.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int VARIABLE_CHANGED
      Event type constant (value = 1) that denotes a value change .
      static int VARIABLE_CREATED
      Event type constant (value = 2) that denotes a variable creation.
      static int VARIABLE_DELETED
      Event type constant (value = 3) that denotes a variable deletion.
      • Fields inherited from class java.util.EventObject

        source
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getType()  
      org.eclipse.core.runtime.IPath getValue()  
      java.lang.String getVariableName()  
      java.lang.String toString()
      Return a string representation of this object.
      • Methods inherited from class java.util.EventObject

        getSource
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • VARIABLE_CHANGED

        public static final int VARIABLE_CHANGED
        Event type constant (value = 1) that denotes a value change .
        See Also:
        Constant Field Values
      • VARIABLE_CREATED

        public static final int VARIABLE_CREATED
        Event type constant (value = 2) that denotes a variable creation.
        See Also:
        Constant Field Values
      • VARIABLE_DELETED

        public static final int VARIABLE_DELETED
        Event type constant (value = 3) that denotes a variable deletion.
        See Also:
        Constant Field Values
    • Constructor Detail

      • PathEntryVariableChangeEvent

        public PathEntryVariableChangeEvent​(IPathEntryVariableManager source,
                                            java.lang.String variableName,
                                            org.eclipse.core.runtime.IPath value,
                                            int type)
        Constructor for this class.
    • Method Detail

      • getValue

        public org.eclipse.core.runtime.IPath getValue()
      • getVariableName

        public java.lang.String getVariableName()
      • getType

        public int getType()
      • toString

        public java.lang.String toString()
        Return a string representation of this object.
        Overrides:
        toString in class java.util.EventObject