]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/chart/property/DoublePropertyModifier.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / chart / property / DoublePropertyModifier.java
index 0b9baecb147fcc5e5f354bbe7f13b1fb95abee41..f9aa143d251edfe8fcb86b31d998c7a67dbf229f 100644 (file)
@@ -1,39 +1,39 @@
-/*******************************************************************************\r
- * Copyright (c) 2010, 2011 Association for Decentralized Information Management in\r
- * 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.modeling.ui.chart.property;\r
-\r
-import org.simantics.browsing.ui.swt.widgets.impl.TextModifyListenerImpl;\r
-import org.simantics.databoard.Bindings;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.WriteGraph;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.management.ISessionContext;\r
-\r
-public class DoublePropertyModifier extends TextModifyListenerImpl<Resource> {\r
-\r
-    final private String propertyURI;\r
-\r
-    public DoublePropertyModifier(ISessionContext context, String propertyURI) {\r
-        this.propertyURI = propertyURI;\r
-    }\r
-\r
-    @Override\r
-    public void applyText(WriteGraph graph, Resource input, String text) throws DatabaseException {\r
-        if (text == null || text.trim().isEmpty()) {\r
-            if (graph.hasStatement(input, graph.getResource(propertyURI)))\r
-                graph.denyValue(input, graph.getResource(propertyURI));\r
-        } else {\r
-            graph.claimLiteral(input, graph.getResource(propertyURI), Double.parseDouble(text), Bindings.DOUBLE);\r
-        }\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2010, 2011 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.modeling.ui.chart.property;
+
+import org.simantics.browsing.ui.swt.widgets.impl.TextModifyListenerImpl;
+import org.simantics.databoard.Bindings;
+import org.simantics.db.Resource;
+import org.simantics.db.WriteGraph;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.management.ISessionContext;
+
+public class DoublePropertyModifier extends TextModifyListenerImpl<Resource> {
+
+    final private String propertyURI;
+
+    public DoublePropertyModifier(ISessionContext context, String propertyURI) {
+        this.propertyURI = propertyURI;
+    }
+
+    @Override
+    public void applyText(WriteGraph graph, Resource input, String text) throws DatabaseException {
+        if (text == null || text.trim().isEmpty()) {
+            if (graph.hasStatement(input, graph.getResource(propertyURI)))
+                graph.denyValue(input, graph.getResource(propertyURI));
+        } else {
+            graph.claimLiteral(input, graph.getResource(propertyURI), Double.parseDouble(text), Bindings.DOUBLE);
+        }
+    }
+
+}