List of usage examples for javafx.scene.layout VBox subclass-usage
From source file com.bekwam.examples.javafx.oldscores.ScoresDialogController.java
/** * Controller for Scores screen * * @author carl_000 */ public class ScoresDialogController extends VBox {
From source file com.bekwam.examples.javafx.oldscores1.ScoresDialogController.java
/** * Controller for Scores screen * * @author carl_000 */ public class ScoresDialogController extends VBox {
From source file ninja.eivind.hotsreplayuploader.window.nodes.UploaderNode.java
/** * The primary {@link javafx.scene.Node} responsible for managing UI components related to the upload of * {@link ReplayFile} */ public class UploaderNode extends VBox implements JavaFXNode {
From source file com.bekwam.examples.javafx.oldscores2.ScoresDialogController.java
/** * Controller for Scores screen * * @author carl_000 */ public class ScoresDialogController extends VBox {
From source file org.pdfsam.ui.module.ProgressPane.java
/**
* Panel showing task progress information
*
* @author Andrea Vacondio
*
*/
From source file ninja.eivind.hotsreplayuploader.window.nodes.HotsLogsNode.java
public class HotsLogsNode extends VBox implements JavaFXNode { private static final String HERO_DETAILS_URL = "https://www.hotslogs.com/Sitewide/HeroDetails?Hero={{heroName}}"; private static final String PLAYER_SEARCH_URL = "https://www.hotslogs.com/PlayerSearch?Name={{playerName}}"; private static final Logger LOG = LoggerFactory.getLogger(HotsLogsNode.class); private static final String HOTS_LOGS_URL = "https://www.hotslogs.com/Default";
From source file poe.trade.assist.SearchPane.java
public class SearchPane extends VBox { private ListProperty<Search> data; public ListProperty<Search> dataProperty() { return data;
From source file org.pdfsam.ui.selection.single.SingleSelectionPane.java
/**
* Panel letting the user select a single input PDF document
*
* @author Andrea Vacondio
*
*/
From source file Main.java
/** basic wizard page class */ abstract class WizardPage extends VBox { Button priorButton = new Button("_Previous"); Button nextButton = new Button("N_ext"); Button cancelButton = new Button("Cancel"); Button finishButton = new Button("_Finish");
From source file com.panemu.tiwulfx.table.TableControl.java
/** * * @author amrullah */ public class TableControl<R> extends VBox {