Serialized Form

  • Package javafx.concurrent

  • Package javafx.embed.swing

    • Class javafx.embed.swing.JFXPanel extends JComponent implements Serializable

      • Serialized Fields

        • disableCount
          AtomicInteger disableCount
        • isCapturingMouse
          boolean isCapturingMouse
        • jfxPanelIOP
          com.sun.javafx.embed.swing.newimpl.JFXPanelInteropN jfxPanelIOP
        • opacity
          float opacity
        • pHeight
          int pHeight
        • pixelsIm
          BufferedImage pixelsIm
        • pPreferredHeight
          int pPreferredHeight
        • pPreferredWidth
          int pPreferredWidth
        • pWidth
          int pWidth
        • scaleFactorX
          double scaleFactorX
        • scaleFactorY
          double scaleFactorY
        • screenX
          int screenX
        • screenY
          int screenY
  • Package javafx.event

  • Package javafx.fxml

  • Package javafx.scene.control

  • Package javafx.scene.input

    • Class javafx.scene.input.ClipboardContent extends HashMap<DataFormat,​Object> implements Serializable

    • Class javafx.scene.input.ContextMenuEvent extends InputEvent implements Serializable

      serialVersionUID:
      20121107L
      • Serialization Methods

      • Serialized Fields

        • keyboardTrigger
          boolean keyboardTrigger
          The boolean that indicates the event was triggered by a keyboard gesture.
        • pickResult
          PickResult pickResult
          Information about the pick if the picked Node is a Shape3D node and its pickOnBounds is false.
        • sceneX
          double sceneX
          Horizontal x position of the event relative to the origin of the Scene that contains the ContextMenuEvent's node. If the node is not in a Scene, then the value is relative to the boundsInParent of the root-most parent of the ContextMenuEvent's node.
        • sceneY
          double sceneY
          Vertical y position of the event relative to the origin of the Scene that contains the ContextMenuEvent's node. If the node is not in a Scene, then the value is relative to the boundsInParent of the root-most parent of the ContextMenuEvent's node.
        • screenX
          double screenX
          Absolute horizontal x position of the event.
        • screenY
          double screenY
          Absolute vertical y position of the event.
    • Class javafx.scene.input.DragEvent extends InputEvent implements Serializable

      serialVersionUID:
      20121107L
      • Serialization Methods

      • Serialized Fields

        • gestureSource
          Object gestureSource
        • gestureTarget
          Object gestureTarget
        • pickResult
          PickResult pickResult
          Information about the pick if the picked Node is a Shape3D node and its pickOnBounds is false.
        • sceneX
          double sceneX
          Horizontal x position of the event relative to the origin of the Scene that contains the DragEvent's node. If the node is not in a Scene, then the value is relative to the boundsInParent of the root-most parent of the DragEvent's node.
        • sceneY
          double sceneY
          Vertical y position of the event relative to the origin of the Scene that contains the DragEvent's node. If the node is not in a Scene, then the value is relative to the boundsInParent of the root-most parent of the DragEvent's node.
        • screenX
          double screenX
          Absolute horizontal x position of the event.
        • screenY
          double screenY
          Absolute vertical y position of the event.
        • state
          javafx.scene.input.DragEvent.State state
        • transferMode
          TransferMode transferMode
    • Class javafx.scene.input.GestureEvent extends InputEvent implements Serializable

      serialVersionUID:
      20121107L
      • Serialization Methods

      • Serialized Fields

        • altDown
          boolean altDown
        • controlDown
          boolean controlDown
        • direct
          boolean direct
        • inertia
          boolean inertia
        • metaDown
          boolean metaDown
        • pickResult
          PickResult pickResult
          Information about the pick if the picked Node is a Shape3D node and its pickOnBounds is false.
        • sceneX
          double sceneX
        • sceneY
          double sceneY
        • screenX
          double screenX
        • screenY
          double screenY
        • shiftDown
          boolean shiftDown
    • Class javafx.scene.input.InputEvent extends Event implements Serializable

      serialVersionUID:
      20121107L
    • Class javafx.scene.input.InputMethodEvent extends InputEvent implements Serializable

      serialVersionUID:
      20121107L
    • Class javafx.scene.input.InputMethodTextRun extends Object implements Serializable

      • Serialized Fields

        • highlight
          InputMethodHighlight highlight
          The highlight used for displaying this text.
          Default value:
          null
        • text
          String text
          The text in this run.
          Default value:
          empty string
    • Class javafx.scene.input.KeyEvent extends InputEvent implements Serializable

      serialVersionUID:
      20121107L
      • Serialized Fields

        • altDown
          boolean altDown
          Returns whether or not the Alt modifier is down on this event.
        • character
          String character
          The Unicode character or sequence of characters associated with the key typed event. Contains multiple elements if the key produced a single Unicode character from outside of the Basic Multilingual Plane which needs to be encoded by the corresponding surrogate pair in Java or if the key produced multiple Unicode characters itself.

          For example, character will have the value "A" for a key typed event generated by pressing SHIFT + 'a'. For key pressed and key released events, character is always CHAR_UNDEFINED.

        • code
          KeyCode code
          The integer key code associated with the key in this key pressed or key released event. For key typed events, code is always KeyCode.UNDEFINED.
        • controlDown
          boolean controlDown
          Returns whether or not the Control modifier is down on this event.
        • metaDown
          boolean metaDown
          Returns whether or not the Meta modifier is down on this event.
        • shiftDown
          boolean shiftDown
          Returns whether or not the Shift modifier is down on this event.
        • text
          String text
          A String describing the key code, such as "HOME", "F1" or "A", for key pressed and key released events. For key typed events, text is always the empty string.
    • Class javafx.scene.input.MouseDragEvent extends MouseEvent implements Serializable

      serialVersionUID:
      20121107L
    • Class javafx.scene.input.MouseEvent extends InputEvent implements Serializable

      serialVersionUID:
      20121107L
      • Serialization Methods

      • Serialized Fields

        • altDown
          boolean altDown
          Whether or not the Alt modifier is down on this event.
        • backButtonDown
          boolean backButtonDown
          true if back button (button 4) is currently pressed. Note that this is different from the button variable in that the button variable indicates which button press was responsible for this event while this variable indicates whether the back button is depressed.
        • button
          MouseButton button
          Which, if any, of the mouse buttons is responsible for this event.
        • clickCount
          int clickCount
          Number of mouse clicks associated with this event. All MOUSE_MOVED events have the clickCount value equal to 0. The value is increased with MOUSE_PRESSED event and stays like that for all subsequent events till MOUSE_RELEASED, including the afterwards generated MOUSE_CLICKED event. The value is increased to numbers higher than one if all the events between two subsequent presses happen on a small region and in a small time (according to native operating system configuration).
        • controlDown
          boolean controlDown
          Whether or not the Control modifier is down on this event.
        • flags
          javafx.scene.input.MouseEvent.Flags flags
        • forwardButtonDown
          boolean forwardButtonDown
          true if forward button (button 5) is currently pressed. Note that this is different from the button variable in that the button variable indicates which button press was responsible for this event while this variable indicates whether the forward button is depressed.
        • metaDown
          boolean metaDown
          Whether or not the Meta modifier is down on this event.
        • middleButtonDown
          boolean middleButtonDown
          true if middle button (button 2) is currently pressed. Note that this is different from the button variable in that the button variable indicates which button press was responsible for this event while this variable indicates whether the middle button is depressed.
        • pickResult
          PickResult pickResult
          Information about the pick if the picked Node is a Shape3D node and its pickOnBounds is false.
        • popupTrigger
          boolean popupTrigger
          Whether or not this mouse event is the popup menu trigger event for the platform.

          Note: Popup menus are triggered differently on different systems. Therefore, popupTrigger should be checked in both onMousePressed and mouseReleased for proper cross-platform functionality.

        • primaryButtonDown
          boolean primaryButtonDown
          true if primary button (button 1, usually the left) is currently pressed. Note that this is different from the button variable in that the button variable indicates which button press was responsible for this event while this variable indicates whether the primary button is depressed.
        • sceneX
          double sceneX
          Horizontal x position of the event relative to the origin of the Scene that contains the MouseEvent's node. If the node is not in a Scene, then the value is relative to the boundsInParent of the root-most parent of the MouseEvent's node.
        • sceneY
          double sceneY
          Vertical y position of the event relative to the origin of the Scene that contains the MouseEvent's node. If the node is not in a Scene, then the value is relative to the boundsInParent of the root-most parent of the MouseEvent's node.
        • screenX
          double screenX
          Absolute horizontal x position of the event.
        • screenY
          double screenY
          Absolute vertical y position of the event.
        • secondaryButtonDown
          boolean secondaryButtonDown
          true if secondary button (button 3, usually the right) is currently pressed. Note that this is different from the button variable in that the button variable indicates which button press was responsible for this event while this variable indicates whether the primary button is depressed.
        • shiftDown
          boolean shiftDown
          Whether or not the Shift modifier is down on this event.
        • stillSincePress
          boolean stillSincePress
          Whether the mouse cursor left the hysteresis region since the previous press.
        • synthesized
          boolean synthesized
    • Class javafx.scene.input.RotateEvent extends GestureEvent implements Serializable

      serialVersionUID:
      20121107L
      • Serialized Fields

        • angle
          double angle
        • totalAngle
          double totalAngle
    • Class javafx.scene.input.ScrollEvent extends GestureEvent implements Serializable

      serialVersionUID:
      20121107L
      • Serialized Fields

        • deltaX
          double deltaX
        • deltaY
          double deltaY
        • multiplierX
          double multiplierX
        • multiplierY
          double multiplierY
        • textDeltaX
          double textDeltaX
        • textDeltaXUnits
          ScrollEvent.HorizontalTextScrollUnits textDeltaXUnits
        • textDeltaY
          double textDeltaY
        • textDeltaYUnits
          ScrollEvent.VerticalTextScrollUnits textDeltaYUnits
        • totalDeltaX
          double totalDeltaX
        • totalDeltaY
          double totalDeltaY
        • touchCount
          int touchCount
    • Class javafx.scene.input.SwipeEvent extends GestureEvent implements Serializable

      serialVersionUID:
      20121107L
      • Serialized Fields

        • touchCount
          int touchCount
    • Class javafx.scene.input.TouchEvent extends InputEvent implements Serializable

      serialVersionUID:
      20121107L
      • Serialized Fields

        • altDown
          boolean altDown
          Whether or not the Alt modifier is down on this event.
        • controlDown
          boolean controlDown
          Whether or not the Control modifier is down on this event.
        • eventSetId
          int eventSetId
        • metaDown
          boolean metaDown
          Whether or not the Meta modifier is down on this event.
        • shiftDown
          boolean shiftDown
          Whether or not the Shift modifier is down on this event.
        • touchPoint
          TouchPoint touchPoint
        • touchPoints
          List<TouchPoint> touchPoints
    • Class javafx.scene.input.TouchPoint extends Object implements Serializable

    • Class javafx.scene.input.ZoomEvent extends GestureEvent implements Serializable

      serialVersionUID:
      20121107L
      • Serialized Fields

        • totalZoomFactor
          double totalZoomFactor
        • zoomFactor
          double zoomFactor
  • Package javafx.scene.media

  • Package javafx.scene.transform

  • Package javafx.scene.web

  • Package javafx.stage

  • Package javafx.util