Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/adl4eclipse/org.eclipse.papyrus.adl4eclipsetool/src/org/eclipse/papyrus/adltool/designer/SimpleFeatureArchitectureSnapshotDesigner.java')
-rw-r--r--extraplugins/adl4eclipse/org.eclipse.papyrus.adl4eclipsetool/src/org/eclipse/papyrus/adltool/designer/SimpleFeatureArchitectureSnapshotDesigner.java30
1 files changed, 16 insertions, 14 deletions
diff --git a/extraplugins/adl4eclipse/org.eclipse.papyrus.adl4eclipsetool/src/org/eclipse/papyrus/adltool/designer/SimpleFeatureArchitectureSnapshotDesigner.java b/extraplugins/adl4eclipse/org.eclipse.papyrus.adl4eclipsetool/src/org/eclipse/papyrus/adltool/designer/SimpleFeatureArchitectureSnapshotDesigner.java
index 8821203a151..9e6bcad9990 100644
--- a/extraplugins/adl4eclipse/org.eclipse.papyrus.adl4eclipsetool/src/org/eclipse/papyrus/adltool/designer/SimpleFeatureArchitectureSnapshotDesigner.java
+++ b/extraplugins/adl4eclipse/org.eclipse.papyrus.adl4eclipsetool/src/org/eclipse/papyrus/adltool/designer/SimpleFeatureArchitectureSnapshotDesigner.java
@@ -1,7 +1,7 @@
/*****************************************************************************
* Copyright (c) 2013 CEA LIST.
*
- *
+ *
* 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
@@ -28,34 +28,36 @@ public class SimpleFeatureArchitectureSnapshotDesigner extends CompleteFeatureAr
protected Package platform;
protected Package architecturefeature;
protected Package platformfeature;
-
+
/**
- *
+ *
* Constructor.
*
- * @param rootPackage the root package where the sub-packages "Architecture" and "platform" will be created
- * @param bundleInitialList the list of feature that will be retro engineered.
+ * @param rootPackage
+ * the root package where the sub-packages "Architecture" and "platform" will be created
+ * @param bundleInitialList
+ * the list of feature that will be retro engineered.
*/
public SimpleFeatureArchitectureSnapshotDesigner(Package rootPackage, ArrayList<Object> bundleInitialList) {
super(rootPackage, bundleInitialList);
- this.dependencyLevelMax=1;
+ this.dependencyLevelMax = 1;
}
-
-
+
+
@Override
protected void initModel() {
super.initModel();
- architecture=rootPackage.createNestedPackage("Architecture");
- platform=rootPackage.createNestedPackage("Platform");
-
+ architecture = rootPackage.createNestedPackage("Architecture");
+ platform = rootPackage.createNestedPackage("Platform");
+
}
-
+
@Override
public void runImportBundles() {
initModel();
modelBundles(architecture);
-
+
}
-
+
}

Back to the top