blob: 6741ceaec52c6e5d7529598cebf2ad057884d3b1 [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 FeatureRef {
private Group parent;
private Feature feature;
public FeatureRef( String id, String alias ) {
super();
this.id = id;
this.alias = alias;
}
public void setParent( Group parent ) {
this.parent = parent;
}
private final String id;
private final String alias;
public Group getParent() {
return parent;
}
public String getId() {
return id;
}
public String getAlias() {
return alias;
}
public void setFeature( Feature feature ) {
this.feature = feature;
}
public Feature getFeature() {
return feature;
}
}