blob: 166ccd6f116774e07a409904cd56f348637caea4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Innoopract Informationssysteme GmbH.
* 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:
* Innoopract Informationssysteme GmbH - initial API and implementation
******************************************************************************/
package org.eclipse.epp.wizard.model;
/**
* @author Jordi Boehme Lopez <jboehme@innoopract.com>
*/
public class Feature {
public Feature( String id, String label, String description ) {
super();
this.description = description;
this.id = id;
this.label = label;
}
private final String id;
private final String label;
public String getId() {
return id;
}
public String getLabel() {
return label;
}
public String getDescription() {
return description;
}
private final String description;
}