1 /*
   2  * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /*
  27  * To change this template, choose Tools | Templates
  28  * and open the template in the editor.
  29  */
  30 package javafx.scene.control;
  31 
  32 import javafx.geometry.Orientation;
  33 
  34 /**
  35  * <p>
  36  * A {@link MenuItem} that as the name suggests allows for a horizontal Separator to be embedded within it,
  37  * by assigning a {@link Separator} to the {@link #contentProperty() content} property of the {@link CustomMenuItem}
  38  * This is provided for convenience as groups of {@link MenuItem menuitems} can be separated
  39  * by a separator. Instead of a creating a {@link CustomMenuItem}  for this purpose, the user
  40  * can use this class as indicated below.
  41  * <p>
  42  * <p>
  43 <pre><code>
  44 SeparatorMenuItem separatorMenuItem = new SeparatorMenuItem();
  45 </code></pre>
  46  * <p>
  47  *
  48  * @see CustomMenuItem
  49  * @see MenuItem
  50  * @see Menu
  51  * @since JavaFX 2.0
  52  */
  53 public class SeparatorMenuItem extends CustomMenuItem {
  54 
  55     /***************************************************************************
  56      *                                                                         *
  57      * Constructors                                                            *
  58      *                                                                         *
  59      **************************************************************************/
  60 
  61     /**
  62      * Creates a default SeparatorMenuItem instance.
  63      */
  64     public SeparatorMenuItem() {
  65         super(new Separator(Orientation.HORIZONTAL), false);
  66         getStyleClass().add(DEFAULT_STYLE_CLASS);
  67     }
  68 
  69 
  70 
  71     /***************************************************************************
  72      *                                                                         *
  73      * Stylesheet Handling                                                     *
  74      *                                                                         *
  75      **************************************************************************/
  76 
  77     private static final String DEFAULT_STYLE_CLASS = "separator-menu-item";
  78 }