All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.panemu.tiwulfx.control.LabelSeparatorMenuItem Maven / Gradle / Ivy

Go to download

TiwulFX provides JavaFX custom components specially designed to work with java POJO object.

There is a newer version: 3.4.2
Show newest version
/*
 * 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