/* * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package javafx.scene.control; import javafx.geometry.Orientation; /** *
* A {@link MenuItem} that as the name suggests allows for a horizontal Separator to be embedded within it, * by assigning a {@link Separator} to the {@link #contentProperty() content} property of the {@link CustomMenuItem} * This is provided for convenience as groups of {@link MenuItem menuitems} can be separated * by a separator. Instead of a creating a {@link CustomMenuItem} for this purpose, the user * can use this class as indicated below. *
*
SeparatorMenuItem separatorMenuItem = new SeparatorMenuItem();
* * * @see CustomMenuItem * @see MenuItem * @see Menu * @since JavaFX 2.0 */ public class SeparatorMenuItem extends CustomMenuItem { /*************************************************************************** * * * Constructors * * * **************************************************************************/ /** * Creates a default SeparatorMenuItem instance. */ public SeparatorMenuItem() { super(new Separator(Orientation.HORIZONTAL), false); getStyleClass().add(DEFAULT_STYLE_CLASS); } /*************************************************************************** * * * Stylesheet Handling * * * **************************************************************************/ private static final String DEFAULT_STYLE_CLASS = "separator-menu-item"; }