]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/symbolEditor/GridVisibleFunction.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / symbolEditor / GridVisibleFunction.java
index b708d57c87bec3421018a9a430ba0a0d7160d86f..225528ebf43ba976181b8e8cf8c026059033b3aa 100644 (file)
@@ -1,50 +1,50 @@
-/*******************************************************************************\r
- * Copyright (c) 2013 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
- *     Semantum Oy - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.modeling.ui.symbolEditor;\r
-\r
-import org.simantics.g2d.canvas.ICanvasContext;\r
-import org.simantics.g2d.participant.GridPainter;\r
-import org.simantics.scl.runtime.function.Function1;\r
-import org.simantics.utils.datastructures.hints.HintListenerAdapter;\r
-import org.simantics.utils.datastructures.hints.IHintContext;\r
-import org.simantics.utils.datastructures.hints.IHintObservable;\r
-import org.simantics.utils.datastructures.hints.IHintContext.Key;\r
-\r
-/**\r
- * A function and a listener for diagram grid visibility. The function\r
- * returns the current grid visibility as a Boolean.\r
- * \r
- * @author Tuukka Lehtonen\r
- */\r
-public class GridVisibleFunction extends HintListenerAdapter implements Function1<Object, Boolean> {\r
-\r
-       Boolean enabled;\r
-\r
-       public GridVisibleFunction(ICanvasContext ctx) {\r
-               IHintContext hctx = ctx.getDefaultHintContext();\r
-               // Initialize state\r
-               hintChanged(hctx, GridPainter.KEY_GRID_ENABLED, null, hctx.getHint(GridPainter.KEY_GRID_ENABLED));\r
-               // Start listening\r
-               hctx.addKeyHintListener(GridPainter.KEY_GRID_ENABLED, this);\r
-       }\r
-\r
-       @Override\r
-       public void hintChanged(IHintObservable sender, Key key, Object oldValue, Object newValue) {\r
-               enabled = Boolean.valueOf(Boolean.TRUE.equals(newValue));\r
-       }\r
-\r
-       @Override\r
-       public Boolean apply(Object p0) {\r
-               return enabled;\r
-       }\r
-\r
+/*******************************************************************************
+ * Copyright (c) 2013 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:
+ *     Semantum Oy - initial API and implementation
+ *******************************************************************************/
+package org.simantics.modeling.ui.symbolEditor;
+
+import org.simantics.g2d.canvas.ICanvasContext;
+import org.simantics.g2d.participant.GridPainter;
+import org.simantics.scl.runtime.function.Function1;
+import org.simantics.utils.datastructures.hints.HintListenerAdapter;
+import org.simantics.utils.datastructures.hints.IHintContext;
+import org.simantics.utils.datastructures.hints.IHintObservable;
+import org.simantics.utils.datastructures.hints.IHintContext.Key;
+
+/**
+ * A function and a listener for diagram grid visibility. The function
+ * returns the current grid visibility as a Boolean.
+ * 
+ * @author Tuukka Lehtonen
+ */
+public class GridVisibleFunction extends HintListenerAdapter implements Function1<Object, Boolean> {
+
+       Boolean enabled;
+
+       public GridVisibleFunction(ICanvasContext ctx) {
+               IHintContext hctx = ctx.getDefaultHintContext();
+               // Initialize state
+               hintChanged(hctx, GridPainter.KEY_GRID_ENABLED, null, hctx.getHint(GridPainter.KEY_GRID_ENABLED));
+               // Start listening
+               hctx.addKeyHintListener(GridPainter.KEY_GRID_ENABLED, this);
+       }
+
+       @Override
+       public void hintChanged(IHintObservable sender, Key key, Object oldValue, Object newValue) {
+               enabled = Boolean.valueOf(Boolean.TRUE.equals(newValue));
+       }
+
+       @Override
+       public Boolean apply(Object p0) {
+               return enabled;
+       }
+
 }
\ No newline at end of file