Object/Class

scalafx.scene

AccessibleAction

Related Docs: class AccessibleAction | package scene

Permalink

object AccessibleAction extends SFXEnumDelegateCompanion[javafx.scene.AccessibleAction, AccessibleAction] with Serializable

This enum describes the actions that an assistive technology such as a screen reader can request from the scene graph.

The AccessibleRole dictates the set of actions that the screen reader will request for a particular control. For example, a push button normally fires an event to indicate that it was pressed in response to the FIRE action.

An action may have any number of parameters, depending on the particular action.

Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/AccessibleAction.html

Source
AccessibleAction.scala
Linear Supertypes
Serializable, Serializable, SFXEnumDelegateCompanion[javafx.scene.AccessibleAction, AccessibleAction], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AccessibleAction
  2. Serializable
  3. Serializable
  4. SFXEnumDelegateCompanion
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. val BlockDecrement: AccessibleAction

    Permalink

    Request that the node be decremented by a large value.

    Request that the node be decremented by a large value. A smaller decrement is requested using #DECREMENT.

  5. val BlockIncrement: AccessibleAction

    Permalink

    Request that the node be incremented by a large value.

    Request that the node be incremented by a large value. A smaller increment is requested using #INCREMENT.

    Used by Slider, ScrollBar, and others

  6. val Collapse: AccessibleAction

    Permalink

    Request that the node should become collapsed.

    Request that the node should become collapsed.

    Used by TreeItem, TitledPane, and others

  7. val Decrement: AccessibleAction

    Permalink

    Request that the node be decremented by a small value.

    Request that the node be decremented by a small value. A larger decrement is requested using #BLOCK_DECREMENT.

    Used by Slider, ScrollBar, and others

  8. val Expand: AccessibleAction

    Permalink

    Request that the node should become expanded.

    Request that the node should become expanded.

    Used by TreeItem, TitledPane, and others

  9. val Fire: AccessibleAction

    Permalink

    Fires the primary action for the node.

    Fires the primary action for the node. For example, a push button will normally send an action event to notify listeners that is has been activated.

    Used by Button, Hyperlink, and others

  10. val Increment: AccessibleAction

    Permalink

    Request that the node be incremented by a small value.

    Request that the node be incremented by a small value. A larger increment is requested using #BLOCK_INCREMENT.

    Used by Slider, ScrollBar, and others

  11. val RequestFocus: AccessibleAction

    Permalink

    Request that the node take focus.

    Request that the node take focus. By default, a node will request focus using javafx.scene.Node#requestFocus(). Both JavaFX and the assisteve technology have the concept of a focus node and most of the time, they are the same. In some cases, a control might want the JavaFX focus to remain on the parent, while the assistive technology focus is on the child. For example, a table may respond to this request by setting focus to a cell inside the table before allowing the default to run.

    Used by Node, TabItem, TableCell and others

  12. val SetSelectedItems: AccessibleAction

    Permalink

    Request the node to set the selection to a list of items.

    Request the node to set the selection to a list of items.

    Used by ListView, TreeView, and others

    Parameters:

    • javafx.collections.ObservableList<Node> the items to select
  13. val SetText: AccessibleAction

    Permalink

    Request the node to set the current text.

    Request the node to set the current text.

    Used by TextField and TextArea.

    Parameters:

    • String the new text
  14. val SetTextSelection: AccessibleAction

    Permalink

    Request the node to set the selection to range of text.

    Request the node to set the selection to range of text.

    Used by TextField and TextArea.

    Parameters:

    • java.lang.Integer the start offset
    • java.lang.Integer the end offset
  15. val SetValue: AccessibleAction

    Permalink

    Request the node to set the current value.

    Request the node to set the current value.

    Used by Slider, Scrollbars, and others

    Parameters:

    • java.lang.Double the new value
  16. val ShowItem: AccessibleAction

    Permalink

    Request the node to show an item, scrolling if required.

    Request the node to show an item, scrolling if required.

    Used by ListView, TreeView, and others

    Parameters:

    • Node the item to show
  17. val ShowMenu: AccessibleAction

    Permalink

    Request the node to show a menu.

    Request the node to show a menu. If the node is a control, then the context menu for the control is shown. If the node is a menu, then the submenu for the menu is shown.

    Used by Node, Menu

    Parameters:

  18. val ShowTextRange: AccessibleAction

    Permalink

    Request the node to show a text range, scrolling if required.

    Request the node to show a text range, scrolling if required.

    Used by TextField and TextArea.

    Parameters:

    • java.lang.Integer the start offset
    • java.lang.Integer the end offset
  19. def apply(name: String): AccessibleAction

    Permalink

    Returns the enum constant of this type with the specified name.

    Returns the enum constant of this type with the specified name.

    name

    the name of the constant to return

    Definition Classes
    SFXEnumDelegateCompanion
    Exceptions thrown

    IllegalArgumentException If the specified enum type has no constant with the specified name, or the specified class object does not represent an enum type.

  20. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  21. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  24. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  26. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  27. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  28. def jfxEnum2sfx(e: javafx.scene.AccessibleAction): AccessibleAction

    Permalink

    Converts a JavaFX enum to its respective SFXEnumDelegate.

    Converts a JavaFX enum to its respective SFXEnumDelegate.

    e

    JavaFX enum

    returns

    scalafx.delegate.SFXEnumDelegate equivalent to argument.

    Definition Classes
    SFXEnumDelegateCompanion
  29. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  30. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  32. implicit def sfxEnum2jfx(s: AccessibleAction): javafx.scene.AccessibleAction

    Permalink

    Converts a SFXEnumDelegate to its respective JavaFX Enum.

    Converts a SFXEnumDelegate to its respective JavaFX Enum.

    s

    SFXEnumDelegate instance

    returns

    Delegated enum

    Definition Classes
    SFXEnumDelegateCompanion
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  34. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  35. def unsortedValues: Array[AccessibleAction]

    Permalink

    Contain constants which will be source for values List

    Contain constants which will be source for values List

    Attributes
    protected
    Definition Classes
    AccessibleActionSFXEnumDelegateCompanion
  36. lazy val values: List[AccessibleAction]

    Permalink

    Returns a List containing the constants of this enum type, in the order they are declared.

    Returns a List containing the constants of this enum type, in the order they are declared.

    Definition Classes
    SFXEnumDelegateCompanion
  37. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from SFXEnumDelegateCompanion[javafx.scene.AccessibleAction, AccessibleAction]

Inherited from AnyRef

Inherited from Any

Ungrouped