Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8ca8939fe4fdf0cd2cc958971efd9c80bbfc95be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package org.eclipse.papyrus.adltool.designer.bundle;

import java.util.ArrayList;

import org.eclipse.pde.internal.core.ifeature.IFeatureModel;
import org.eclipse.uml2.uml.Component;


public class FeatureDescriptionDesigner extends AbstractBundleDescriptionDesigner {

	public String getSymbolicName(Object bundleProject) {
		if(bundleProject instanceof IFeatureModel){
			return	((IFeatureModel)bundleProject).getFeature().getId();
		}
		return null;
	}

	public void fillExportedPackages(Component bundleComponent, Object bundleProject) {
		// TODO Auto-generated method stub
		
	}

	public ArrayList<ReferencedOSGIElement> getRequiredBundle(Component bundleComponent, Object bundleProject) {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public String getBundleValue(Object bundleProject, String key) {
		// TODO Auto-generated method stub
		return null;
	}
}

Back to the top