Package

scalafx

delegate

Permalink

package delegate

Contains traits and objects to help to wrap JavaFx classes in their equivalent ScalaFX classes/traits.

Source
package.scala
Linear Supertypes
Content Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. delegate
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait AlignmentDelegate[J <: Aligned] extends SFXDelegate[J]

    Permalink

    Trait that unifies JavaFX classes that contains properties indicating component's internal alignment, represented by alignmentProperty and its respective getter and setters.

  2. trait AlignmentPropertyDelegate extends SFXDelegate[ReadOnlyObjectProperty[_]]

    Permalink
  3. trait DelegateIncludes extends AnyRef

    Permalink
  4. trait DimensionDelegate[J <: Dimensioned] extends SFXDelegate[J]

    Permalink

    Trait that unifies JavaFX classes that contains properties indicating height and width, represented by heightProperty and widthProperty and their respective getter and setters.

    Trait that unifies JavaFX classes that contains properties indicating height and width, represented by heightProperty and widthProperty and their respective getter and setters.

    J

    Original JavaFX type that contains height and width properties.

  5. trait FireDelegate[J <: Fired] extends SFXDelegate[J]

    Permalink

    Unify classes that contains a fire() method that has no return (void)

  6. trait PositionDelegate[J <: Positioned] extends SFXDelegate[J]

    Permalink

    Trait that unifies JavaFX classes that contains properties indicating localization in 2 dimensions, represented by xProperty and yProperty and their respective getter and setters.

  7. trait SFXDelegate[+D <: AnyRef] extends AnyRef

    Permalink

    Basic trait for all JavaFX classes wrapping.

    Basic trait for all JavaFX classes wrapping.

    D

    JavaFX class to be wrapped.

  8. trait SFXEnumDelegate[E <: Enum[E]] extends SFXDelegate[E]

    Permalink

    Base trait for JavaFX enum wrappers.

    Base trait for JavaFX enum wrappers.

    E

    Original JavaFX enum

  9. trait SFXEnumDelegateCompanion[E <: Enum[E], S <: SFXEnumDelegate[E]] extends AnyRef

    Permalink

    Base trait for all Companion objects SFXEnumDelegate subclasses.

    Base trait for all Companion objects SFXEnumDelegate subclasses. It mirrors static methods for Enum.

    E

    Original JavaFX enum

    S

    SFXEnumDelegate that wrappers E

Inherited from AnyRef

Inherited from Any

Ungrouped