]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.browsing.ui/src/org/simantics/browsing/ui/ExplorerState.java
Externalize strings in org.simantics.db.procore.ui
[simantics/platform.git] / bundles / org.simantics.browsing.ui / src / org / simantics / browsing / ui / ExplorerState.java
index b7d152c99ce30b2a99e25d849d2f1ca75727089c..1e02fe034eee88b8b4a7ee8c186f9e0d0f3f915f 100644 (file)
@@ -64,7 +64,7 @@ public class ExplorerState {
         */
        public ExplorerState(NodeContext[] topNodePath, int[] topNodePathChildIndex, Collection<NodeContext> expandedNodes, Map<String, Integer> columnWidths) {
                if (expandedNodes == null)
-                       throw new IllegalArgumentException("null expanded nodes");
+                       throw new IllegalArgumentException("null expanded nodes"); //$NON-NLS-1$
                this.topNodePath = topNodePath;
                this.topNodePathChildIndex = topNodePathChildIndex;
                this.expandedNodes = expandedNodes;
@@ -73,10 +73,10 @@ public class ExplorerState {
 
        @Override
        public String toString() {
-               return getClass().getSimpleName() + "[topNodePath="
-                               + Arrays.toString(topNodePath) + ", topNodePathChildIndex="
-                               + Arrays.toString(topNodePathChildIndex) + ", expandedNodes="
-                               + expandedNodes + ", " + columnWidths + "]";
+               return getClass().getSimpleName() + "[topNodePath=" //$NON-NLS-1$
+                               + Arrays.toString(topNodePath) + ", topNodePathChildIndex=" //$NON-NLS-1$
+                               + Arrays.toString(topNodePathChildIndex) + ", expandedNodes=" //$NON-NLS-1$
+                               + expandedNodes + ", " + columnWidths + "]"; //$NON-NLS-1$ //$NON-NLS-2$
        }
 
 }