blob: 23795bde250d2cac8ba94b865491f53a985adea3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.common.environment;
public class Choice {
protected char shortcut = ' ';
protected String label = null;
protected String description = null;
/**
* Constructor for Choice.
*/
public Choice() {
}
/**
* Constructor for Choice.
* @param shortcut
* @param label
*/
public Choice(char shortcut, String label) {
this.shortcut = shortcut;
this.label = label;
}
/**
* Constructor for Choice.
* @param shortcut
* @param label
* @param description
*/
public Choice(char shortcut, String label, String description) {
this.shortcut = shortcut;
this.label = label;
this.description = description;
}
/**
* Gets the label.
* @return Returns a String
*/
public String getLabel() {
return label;
}
/**
* Sets the label.
* @param label The label to set
*/
public void setLabel(String label) {
this.label = label;
}
/**
* Gets the description.
* @return Returns a String
*/
public String getDescription() {
return description;
}
/**
* Sets the description.
* @param description The description to set
*/
public void setDescription(String description) {
this.description = description;
}
/**
* Gets the shortcut.
* @return Returns a char
*/
public char getShortcut() {
return shortcut;
}
/**
* Sets the shortcut.
* @param shortcut The shortcut to set
*/
public void setShortcut(char shortcut) {
this.shortcut = shortcut;
}
}