]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.browsing.ui/src/org/simantics/browsing/ui/CheckedState.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui / src / org / simantics / browsing / ui / CheckedState.java
index a9f4d82f4fa273880c99f919478cf95855bb7782..80d74ce3e894cc02a384b8f6c943719aa90f21ec 100644 (file)
@@ -1,49 +1,49 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.browsing.ui;\r
-\r
-import java.util.EnumSet;\r
-\r
-/**\r
- * Describes the checked state of a NodeContext in the browsing framework.\r
- * Commonly in a viewer (for example SWT/JFace) viewed items can have have a\r
- * check-box attached to them telling, e.g. are they selected or not.\r
- * \r
- * @author Tuukka Lehtonen\r
- * \r
- * @see BuiltinKeys#IS_CHECKED\r
- */\r
-public enum CheckedState {\r
-\r
-    /**\r
-     * Node is checked.\r
-     */\r
-    CHECKED,\r
-\r
-    /**\r
-     * Node is "grayed", e.g. indirectly selected.\r
-     */\r
-    GRAYED,\r
-\r
-    /**\r
-     * Node is not checked.\r
-     */\r
-    NOT_CHECKED\r
-    ;\r
-\r
-    public static final EnumSet<CheckedState> CHECKED_STATES = EnumSet.of(CHECKED, GRAYED);\r
-\r
-    public static CheckedState of(boolean b) {\r
-        return b ? CHECKED : NOT_CHECKED;\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * 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
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.browsing.ui;
+
+import java.util.EnumSet;
+
+/**
+ * Describes the checked state of a NodeContext in the browsing framework.
+ * Commonly in a viewer (for example SWT/JFace) viewed items can have have a
+ * check-box attached to them telling, e.g. are they selected or not.
+ * 
+ * @author Tuukka Lehtonen
+ * 
+ * @see BuiltinKeys#IS_CHECKED
+ */
+public enum CheckedState {
+
+    /**
+     * Node is checked.
+     */
+    CHECKED,
+
+    /**
+     * Node is "grayed", e.g. indirectly selected.
+     */
+    GRAYED,
+
+    /**
+     * Node is not checked.
+     */
+    NOT_CHECKED
+    ;
+
+    public static final EnumSet<CheckedState> CHECKED_STATES = EnumSet.of(CHECKED, GRAYED);
+
+    public static CheckedState of(boolean b) {
+        return b ? CHECKED : NOT_CHECKED;
+    }
+
+}