Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/layers/org.eclipse.papyrus.layers.stackmodel/src/org/eclipse/papyrus/layers/stackmodel/layers/impl/AllViewsDerivedLayerImpl.java')
-rw-r--r--extraplugins/layers/org.eclipse.papyrus.layers.stackmodel/src/org/eclipse/papyrus/layers/stackmodel/layers/impl/AllViewsDerivedLayerImpl.java16
1 files changed, 9 insertions, 7 deletions
diff --git a/extraplugins/layers/org.eclipse.papyrus.layers.stackmodel/src/org/eclipse/papyrus/layers/stackmodel/layers/impl/AllViewsDerivedLayerImpl.java b/extraplugins/layers/org.eclipse.papyrus.layers.stackmodel/src/org/eclipse/papyrus/layers/stackmodel/layers/impl/AllViewsDerivedLayerImpl.java
index dd9f68028d3..25b6df53b5c 100644
--- a/extraplugins/layers/org.eclipse.papyrus.layers.stackmodel/src/org/eclipse/papyrus/layers/stackmodel/layers/impl/AllViewsDerivedLayerImpl.java
+++ b/extraplugins/layers/org.eclipse.papyrus.layers.stackmodel/src/org/eclipse/papyrus/layers/stackmodel/layers/impl/AllViewsDerivedLayerImpl.java
@@ -19,16 +19,17 @@ import static org.eclipse.papyrus.layers.stackmodel.Activator.log;
* @generated
*/
public class AllViewsDerivedLayerImpl extends AbstractLayerImpl implements AllViewsDerivedLayer {
-
+
/**
* Object used to synchronize a list with the diagram's views.
- *
+ *
*/
protected DiagramViewToListSynchronizer viewsListSynchronizer;
-
+
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated NOT
*/
protected AllViewsDerivedLayerImpl() {
@@ -40,6 +41,7 @@ public class AllViewsDerivedLayerImpl extends AbstractLayerImpl implements AllVi
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
@@ -51,7 +53,7 @@ public class AllViewsDerivedLayerImpl extends AbstractLayerImpl implements AllVi
* This layer has just been added to a LayerStack.
* Set the root of the expression.
* Set the views to match the result of the expression.
- *
+ *
* @see org.eclipse.papyrus.layers.stackmodel.layers.impl.LayerExpressionImpl#initLayer(org.eclipse.papyrus.layers.stackmodel.layers.LayersStack)
*
* @param owningLayersStack
@@ -59,12 +61,12 @@ public class AllViewsDerivedLayerImpl extends AbstractLayerImpl implements AllVi
@Override
public void initLayer(LayersStack owningLayersStack) {
super.initLayer(owningLayersStack);
-
- if(log.isDebugEnabled()) {
+
+ if (log.isDebugEnabled()) {
log.debug(this.getClass().getSimpleName() + ".initLayer(" + owningLayersStack + ")");
}
// Set the diagram associated to this tree of layers
viewsListSynchronizer.setDiagram(owningLayersStack.getDiagram());
}
-} //AllViewsDerivedLayerImpl
+} // AllViewsDerivedLayerImpl

Back to the top