Class GraphicsNodeEvent

java.lang.Object
java.util.EventObject
org.apache.batik.gvt.event.GraphicsNodeEvent
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
GraphicsNodeChangeEvent, GraphicsNodeFocusEvent, GraphicsNodeInputEvent

public class GraphicsNodeEvent extends EventObject
A low-level event for GraphicsNode.
Version:
$Id: GraphicsNodeEvent.java 1733416 2016-03-03 07:07:13Z gadams $
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private boolean
    Indicates whether or not this event is consumed.
    protected int
    The ID of this event.

    Fields inherited from class java.util.EventObject

    source
  • Constructor Summary

    Constructors
    Constructor
    Description
    Constructs a new graphics node event with the specified source and ID.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Consumes this event so that it will not be processed in the default manner by the source which originated it.
    Returns the graphics node where the event is originated.
    int
    Returns the ID of this event.
    boolean
    Returns whether or not this event has been consumed.

    Methods inherited from class java.util.EventObject

    getSource, toString

    Methods inherited from class java.lang.Object

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

    • consumed

      private boolean consumed
      Indicates whether or not this event is consumed.
    • id

      protected int id
      The ID of this event.
  • Constructor Details

    • GraphicsNodeEvent

      public GraphicsNodeEvent(GraphicsNode source, int id)
      Constructs a new graphics node event with the specified source and ID.
      Parameters:
      source - the graphics node where the event originated
      id - the id of this event
  • Method Details

    • getID

      public int getID()
      Returns the ID of this event.
    • getGraphicsNode

      public GraphicsNode getGraphicsNode()
      Returns the graphics node where the event is originated.
    • consume

      public void consume()
      Consumes this event so that it will not be processed in the default manner by the source which originated it.
    • isConsumed

      public boolean isConsumed()
      Returns whether or not this event has been consumed.