/* * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.javafx.scene.control.skin; /** * Indicates what the look of the ColorPicker control should be. */ enum ComboBoxMode { /** * The default look with display and arrow button. */ COMBOBOX, /** * Split Menu Button look with display and arrow button separated by a line. */ SPLITBUTTON, /** * Simple Button look with display area only. */ BUTTON }