]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scenegraph/src/org/simantics/scenegraph/g2d/nodes/StateMaskNode.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scenegraph / src / org / simantics / scenegraph / g2d / nodes / StateMaskNode.java
index 223aed585e569145735a4fe8ab6b4d3fd0b79b59..7757861410abb8d9ea052d04f9905a3f4473d9e6 100644 (file)
@@ -1,42 +1,42 @@
-/*******************************************************************************\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.scenegraph.g2d.nodes;\r
-\r
-import org.simantics.scenegraph.g2d.G2DNode;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public abstract class StateMaskNode extends G2DNode {\r
-\r
-    private static final long serialVersionUID = 5614241810541732707L;\r
-\r
-    protected static final byte IN_RENDER        = 1 << 0;\r
-    protected static final byte IN_GET_BOUNDS    = 1 << 1;\r
-\r
-    protected transient byte    flags            = 0;\r
-\r
-    protected boolean hasFlags(byte mask) {\r
-        return (flags & mask) != 0;\r
-    }\r
-\r
-    protected byte setFlags(byte mask) {\r
-        flags |= mask;\r
-        return flags;\r
-    }\r
-\r
-    protected byte clearFlags(byte mask) {\r
-        flags &= ~mask;\r
-        return flags;\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.scenegraph.g2d.nodes;
+
+import org.simantics.scenegraph.g2d.G2DNode;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public abstract class StateMaskNode extends G2DNode {
+
+    private static final long serialVersionUID = 5614241810541732707L;
+
+    protected static final byte IN_RENDER        = 1 << 0;
+    protected static final byte IN_GET_BOUNDS    = 1 << 1;
+
+    protected transient byte    flags            = 0;
+
+    protected boolean hasFlags(byte mask) {
+        return (flags & mask) != 0;
+    }
+
+    protected byte setFlags(byte mask) {
+        flags |= mask;
+        return flags;
+    }
+
+    protected byte clearFlags(byte mask) {
+        flags &= ~mask;
+        return flags;
+    }
+
 }
\ No newline at end of file