Module eu.hansolo.tilesfx
Package eu.hansolo.tilesfx
Class SectionBuilder<B extends SectionBuilder<B>>
- java.lang.Object
-
- eu.hansolo.tilesfx.SectionBuilder<B>
-
public class SectionBuilder<B extends SectionBuilder<B>> extends java.lang.ObjectCreated by hansolo on 23.12.16.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedSectionBuilder()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Bactive(boolean ACTIVE)Sectionbuild()Bcolor(javafx.scene.paint.Color COLOR)static SectionBuildercreate()BhighlightColor(javafx.scene.paint.Color COLOR)Bicon(javafx.scene.image.Image IMAGE)BonSectionEntered(javafx.event.EventHandler<Section.SectionEvent> HANDLER)BonSectionLeft(javafx.event.EventHandler<Section.SectionEvent> HANDLER)Bstart(double VALUE)Bstop(double VALUE)BstyleClass(java.lang.String STYLE_CLASS)Btext(java.lang.String TEXT)BtextColor(javafx.scene.paint.Color COLOR)
-
-
-
Method Detail
-
create
public static final SectionBuilder create()
-
start
public final B start(double VALUE)
-
stop
public final B stop(double VALUE)
-
text
public final B text(java.lang.String TEXT)
-
icon
public final B icon(javafx.scene.image.Image IMAGE)
-
color
public final B color(javafx.scene.paint.Color COLOR)
-
highlightColor
public final B highlightColor(javafx.scene.paint.Color COLOR)
-
textColor
public final B textColor(javafx.scene.paint.Color COLOR)
-
active
public final B active(boolean ACTIVE)
-
styleClass
public final B styleClass(java.lang.String STYLE_CLASS)
-
onSectionEntered
public final B onSectionEntered(javafx.event.EventHandler<Section.SectionEvent> HANDLER)
-
onSectionLeft
public final B onSectionLeft(javafx.event.EventHandler<Section.SectionEvent> HANDLER)
-
build
public final Section build()
-
-