Class Event

java.lang.Object
processing.event.Event
Direct Known Subclasses:
KeyEvent, MouseEvent, TouchEvent

public class Event extends Object
  • Field Details

  • Constructor Details

    • Event

      public Event(Object nativeObject, long millis, int action, int modifiers)
  • Method Details

    • getFlavor

      public int getFlavor()
    • getNative

      public Object getNative()
      Get the platform-native event object. This might be the java.awt event on the desktop, though if you're using OpenGL on the desktop it'll be a NEWT event that JOGL uses. Android events are something else altogether. Bottom line, use this only if you know what you're doing, and don't make assumptions about the class type.
    • getMillis

      public long getMillis()
    • getAction

      public int getAction()
    • getModifiers

      public int getModifiers()
    • isShiftDown

      public boolean isShiftDown()
    • isControlDown

      public boolean isControlDown()
    • isMetaDown

      public boolean isMetaDown()
    • isAltDown

      public boolean isAltDown()