⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 specialvaluecombobox.java

📁 具有不同语法高亮的编辑器实例
💻 JAVA
字号:
/*
 * 12/09/2004
 *
 * SpecialValueComboBox.java - A combo box with special strings associated
 *                             with each of its elements.
 * Copyright (C) 2004 Robert Futrell
 * email@address.com
 * www.website.com
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */
package org.fife.ui;

import java.util.Vector;
import javax.swing.JComboBox;


/**
 * An extension of <code>JComboBox</code> that remembers a special string
 * for each of its contained items.  This is useful for when you need a combo
 * box whose choices correspond to strings, but you don't want those strings
 * to be the values shown in the combo box.
 *
 * @author Robert Futrell
 * @version 0.1
 */
public class SpecialValueComboBox extends JComboBox {

	/**
	 * 
	 */
	private static final long serialVersionUID = -4055282201006818623L;

	private Vector values = new Vector(1);


/*****************************************************************************/


	/**
	 * Constructor.
	 */
	public SpecialValueComboBox() {
		super();
	}


/*****************************************************************************/


	/**
	 * Adds an object/"special value" (parameter) pair to this combo box.
	 * You should use this method to add items to this combo box instead
	 * of the standard <code>addItem</code> method.
	 *
	 * @param anObject The object to add to/display in the combo box.
	 * @param value The "special value" (parameter) to associate with the
	 *             object.
	 */
	public void addSpecialItem(Object anObject, String value) {
		values.add(value);
		super.addItem(anObject);
	}


/*****************************************************************************/


	/**
	 * Returns the "special value" (parameter) associated with the currently
	 * selected item.
	 *
	 * @return The special item.
	 */
	public String getSelectedSpecialItem() {
		return getSpecialItemAt(getSelectedIndex());
	}


/*****************************************************************************/


	/**
	 * Returns the "special value" (parameter) at the specified index.
	 *
	 * @param index The index.
	 * @return The special item.
	 */
	public String getSpecialItemAt(int index) {
		return (String)values.get(index);
	}


/*****************************************************************************/


	/**
	 * Inserts an item at the specified location in the combo box's list.
	 * This method should be used instead of <code>JComboBox</code>'s
	 * <code>insertItemAt</code> method.
	 *
	 * @param anObject The object to add to/display in the combo box.
	 * @param index The index at which to add the object.
	 * @param value The "special value" (parameter) to associate with the
	 *             object.
	 */
	public void insertSpecialItemAt(Object anObject, int index,
							String value) {
		values.add(index, value);
		super.insertItemAt(anObject, index);
	}


/*****************************************************************************/


	/**
	 * Returns whether the specified string is a registered "special value"
	 * (parameter).
	 *
	 * @param possibleValue The parameter to check for.
	 * @return Whether it is a "special value" (parameter).
	 */
	public boolean isSpecialItem(String possibleValue) {
		return values.indexOf(possibleValue)>-1;
	}


/*****************************************************************************/


	/**
	 * Sets the selected combo box item by "special value" (parameter).
	 *
	 * @param value The parameter whose item to select.  If this is not
	 *             a registered special item, the first item (index 0) is
	 *             selected.
	 */
	public void setSelectedSpecialItem(String value) {
		int index = values.indexOf(value);
		setSelectedIndex(index);
	}


/*****************************************************************************/

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -