com.panemu.tiwulfx.control.LabelSeparatorMenuItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tiwulfx Show documentation
Show all versions of tiwulfx Show documentation
TiwulFX provides JavaFX custom components specially designed to work with java POJO object.
/*
* License GNU LGPL
* Copyright (C) 2012 Amrullah .
*/
package com.panemu.tiwulfx.control;
import javafx.scene.control.SeparatorMenuItem;
/**
*
* @author Amrullah
*/
public class LabelSeparatorMenuItem extends SeparatorMenuItem {
public LabelSeparatorMenuItem(String label) {
this(label, true);
}
public LabelSeparatorMenuItem(String label, boolean topPading) {
super();
LabelSeparator content = new LabelSeparator(label, topPading);
content.setPrefHeight(LabelSeparator.USE_COMPUTED_SIZE);
content.setMinHeight(LabelSeparator.USE_PREF_SIZE);
setContent(content);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy