]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/chart/property/TimePropertyModifier.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / chart / property / TimePropertyModifier.java
index a822698012fffacbd40dc8ec207cab87b0736571..294342cb7aeda18d3f979e296fd2667bfe175fb8 100644 (file)
@@ -1,46 +1,46 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 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
-/**\r
- * @author Toni Kalajainen\r
- */\r
-public class TimePropertyModifier extends TextModifyListenerImpl<Resource> {\r
-\r
-    final private String propertyURI;\r
-    TimeInputValidator validator;\r
-\r
-    public TimePropertyModifier(ISessionContext context, String propertyURI, TimeInputValidator validator) {\r
-        this.propertyURI = propertyURI;\r
-        this.validator = validator;\r
-    }\r
-\r
-    @Override\r
-    public void applyText(WriteGraph graph, Resource input, String text) throws DatabaseException {\r
-        Double x = validator.parse(text);\r
-        if (x == null) {\r
-            if (graph.hasStatement(input, graph.getResource(propertyURI)))\r
-                graph.denyValue(input, graph.getResource(propertyURI));\r
-        } else {\r
-            graph.claimLiteral(input, graph.getResource(propertyURI), x, Bindings.DOUBLE);\r
-        }\r
-    }\r
-\r
-}\r
-\r
+/*******************************************************************************
+ * Copyright (c) 2007, 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;
+
+/**
+ * @author Toni Kalajainen
+ */
+public class TimePropertyModifier extends TextModifyListenerImpl<Resource> {
+
+    final private String propertyURI;
+    TimeInputValidator validator;
+
+    public TimePropertyModifier(ISessionContext context, String propertyURI, TimeInputValidator validator) {
+        this.propertyURI = propertyURI;
+        this.validator = validator;
+    }
+
+    @Override
+    public void applyText(WriteGraph graph, Resource input, String text) throws DatabaseException {
+        Double x = validator.parse(text);
+        if (x == null) {
+            if (graph.hasStatement(input, graph.getResource(propertyURI)))
+                graph.denyValue(input, graph.getResource(propertyURI));
+        } else {
+            graph.claimLiteral(input, graph.getResource(propertyURI), x, Bindings.DOUBLE);
+        }
+    }
+
+}
+