/******************************************************************************* * Copyright (c) 1998, 2015 Oracle and/or its affiliates. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Oracle - initial API and implementation from Oracle TopLink ******************************************************************************/ package org.eclipse.persistence.tools.workbench.framework.app; import javax.swing.AbstractButton; import javax.swing.Icon; import org.eclipse.persistence.tools.workbench.framework.action.FrameworkAction; import org.eclipse.persistence.tools.workbench.framework.action.ToggleFrameworkAction; /** * Specialized instance of a <code>ButtonDescription</code> that possesses a * default <code>ButtonCreator</code> that knows how to build an instance of * <code>ToggleMenuItem</code>. Requires a <code>ToggleFrameworkAction</code> * that possess knowledge of the selection state of the action. * * @see org.eclipse.persistence.tools.workbench.framework.app.ButtonDescription * @see org.eclipse.persistence.tools.workbench.framework.action.ToggleFrameworkAction * @see org.eclipse.persistence.tools.workbench.framework.app.ToggleMenuItem * @version 10.1.3 */ public class ToggleMenuItemDescription extends ButtonDescription { public ToggleMenuItemDescription(ToggleFrameworkAction action, String text, String toolTip, int mnemonic, Icon icon) { super(action, new CheckBoxMenuItemCreator(), text, toolTip, mnemonic, icon); } public ToggleMenuItemDescription(ToggleFrameworkAction action) { super(action, new CheckBoxMenuItemCreator()); } /** * Implementor of <code>ButtonCreator/code> that knows how to build a * <code>ToggleMenuItem</code>. */ private static class CheckBoxMenuItemCreator implements ButtonCreator { public AbstractButton createButton(FrameworkAction action) { return new ToggleMenuItem((ToggleFrameworkAction) action); } } }