]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/adapter/impl/LiteralInputValidator.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / adapter / impl / LiteralInputValidator.java
index f33c4774d9098412e33ea4c7bbd8f15177d2a844..1134faf8f6a8c556c4f8323e867f1aea90bb2cc4 100644 (file)
@@ -1,40 +1,40 @@
-/*******************************************************************************\r
- * Copyright (c) 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.db.layer0.adapter.impl;\r
-\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.common.adaption.SimpleContextualAdapter;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.layer0.variable.InputValidator;\r
-import org.simantics.db.layer0.variable.Variable;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public abstract class LiteralInputValidator extends SimpleContextualAdapter<InputValidator, Variable> {\r
-\r
-    @Override\r
-    public InputValidator adapt(ReadGraph g, Resource source, Variable context) throws DatabaseException {\r
-        return new InputValidator() {\r
-            @Override\r
-            public String isValid(Object newValue) {\r
-                if (newValue instanceof String)\r
-                    return validate((String) newValue);\r
-                return "Invalid text: " + newValue;\r
-            }\r
-        };\r
-    }\r
-\r
-    protected abstract String validate(String newValue);\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 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.db.layer0.adapter.impl;
+
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.common.adaption.SimpleContextualAdapter;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.layer0.variable.InputValidator;
+import org.simantics.db.layer0.variable.Variable;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public abstract class LiteralInputValidator extends SimpleContextualAdapter<InputValidator, Variable> {
+
+    @Override
+    public InputValidator adapt(ReadGraph g, Resource source, Variable context) throws DatabaseException {
+        return new InputValidator() {
+            @Override
+            public String isValid(Object newValue) {
+                if (newValue instanceof String)
+                    return validate((String) newValue);
+                return "Invalid text: " + newValue;
+            }
+        };
+    }
+
+    protected abstract String validate(String newValue);
+
+}