blob: 88d7925b34a588693b6d471ae673756ce1285be5 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2006 IBM Corporation.
* 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 Implementation
*
*****************************************************************************/
package org.eclipse.ptp.utils.ui.swt;
public class ComboGroupItem {
public String id;
public String value;
/**
* @param id
* @param value
*/
public ComboGroupItem(String id, String value) {
this.id = id;
this.value = value;
}
public ComboGroupItem(ComboGroupItem item) {
this.id = item.id;
this.value = item.value;
}
/**
* @return the id
*/
public String getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(String id) {
this.id = id;
}
/**
* @return the value
*/
public String getValue() {
return value;
}
/**
* @param value the value to set
*/
public void setValue(String value) {
this.value = value;
}
}