Object

scalafx.application

Platform

Related Doc: package application

Permalink

object Platform

Application platform support, wrapper for javafx.application.Platform.

Source
Platform.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Platform
  2. AnyRef
  3. 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. def accessibilityActive: ReadOnlyBooleanProperty

    Permalink

    Indicates whether or not accessibility is active.

    Indicates whether or not accessibility is active. This property is typically set to true the first time an assistive technology, such as a screen reader, requests information about any JavaFX window or its children.

    This method may be called from any thread.

    returns

    the read-only boolean property indicating if accessibility is active

    Since

    JavaFX 8u40

  5. final def asInstanceOf[T0]: T0

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  9. def exit(): Unit

    Permalink

    Causes the JavaFX application to terminate.

  10. def finalize(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. def implicitExit: Boolean

    Permalink

    Gets the value of the implicitExit attribute.

  14. def implicitExit_=(implicitExit: Boolean): Unit

    Permalink

    Sets the implicitExit attribute to the specified value.

  15. def isAccessibilityActive: Boolean

    Permalink
  16. def isFxApplicationThread: Boolean

    Permalink

    Returns true if the calling thread is the JavaFX Application Thread.

  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. def isSupported(feature: ConditionalFeature): Boolean

    Permalink

    Queries whether a specific conditional feature is supported by the platform.

  19. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  22. def runLater[R](op: ⇒ R): Unit

    Permalink

    Run the specified code block on the JavaFX Application Thread at some unspecified time in the future.

    Run the specified code block on the JavaFX Application Thread at some unspecified time in the future. Returns immediately.

    Example use:

    Platform.runLater {
      println("Running on application thread.")
    }
  23. def runLater(runnable: Runnable): Unit

    Permalink

    Run the specified Runnable on the JavaFX Application Thread at some unspecified time in the future.

    Run the specified Runnable on the JavaFX Application Thread at some unspecified time in the future. Returns immediately.

  24. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped