]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/diagram/style/TypicalInheritanceStyle.java
Externalize strings
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / diagram / style / TypicalInheritanceStyle.java
index d93264f4690486330d19f3ef84ec2b7973a2b291..f29167653f180539fd6ba76858ff47b42961fb63 100644 (file)
@@ -145,7 +145,7 @@ public class TypicalInheritanceStyle extends StyleBase<TypicalInheritanceResult>
             ShapeNode node = null;
 
             if (_node instanceof ParentNode<?>) {
-                node = ProfileVariables.claimChild(_node, "", "typical", DecorationShapeNode.class, context);
+                node = ProfileVariables.claimChild(_node, "", "typical", DecorationShapeNode.class, context); //$NON-NLS-1$ //$NON-NLS-2$
             } else {
                 // Ignore, cannot create decoration.
                 return;
@@ -225,8 +225,8 @@ public class TypicalInheritanceStyle extends StyleBase<TypicalInheritanceResult>
 
     @Override
     protected void cleanupStyleForNode(EvaluationContext context, INode node) {
-        ProfileVariables.denyChild(node, "*", "typical");
-        ProfileVariables.denyChild(node, "", "typical");
+        ProfileVariables.denyChild(node, "*", "typical"); //$NON-NLS-1$ //$NON-NLS-2$
+        ProfileVariables.denyChild(node, "", "typical"); //$NON-NLS-1$ //$NON-NLS-2$
     }
 
 }