]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.objmap2/src/org/simantics/objmap/graph/rules/range/FieldAccessorWithDefault.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.objmap2 / src / org / simantics / objmap / graph / rules / range / FieldAccessorWithDefault.java
index dea8cf353d10bd022187e34b981f206378df90b2..48b7bfb8f84f4710e3cabebecbf4b04d69667af9 100644 (file)
@@ -1,40 +1,40 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 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
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.objmap.graph.rules.range;\r
-\r
-import java.lang.reflect.Field;\r
-\r
-import org.simantics.objmap.exceptions.MappingException;\r
-\r
-\r
-/**\r
- * Accesses the given field of the element.\r
- * @author Hannu Niemist�\r
- */\r
-public class FieldAccessorWithDefault<Range,T> extends FieldAccessor<Range,T> {\r
-    \r
-       T defaultValue;\r
-\r
-       public FieldAccessorWithDefault(Field field, T defaultValue) {\r
-        super(field);\r
-        this.defaultValue = defaultValue;\r
-    }\r
-\r
-    @Override\r
-       public T get(Range element) throws MappingException {\r
-               T value = super.get(element);\r
-               if(value == null)\r
-                   return defaultValue;\r
-               else\r
-                   return value;\r
-       }\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 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:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.objmap.graph.rules.range;
+
+import java.lang.reflect.Field;
+
+import org.simantics.objmap.exceptions.MappingException;
+
+
+/**
+ * Accesses the given field of the element.
+ * @author Hannu Niemist�
+ */
+public class FieldAccessorWithDefault<Range,T> extends FieldAccessor<Range,T> {
+    
+       T defaultValue;
+
+       public FieldAccessorWithDefault(Field field, T defaultValue) {
+        super(field);
+        this.defaultValue = defaultValue;
+    }
+
+    @Override
+       public T get(Range element) throws MappingException {
+               T value = super.get(element);
+               if(value == null)
+                   return defaultValue;
+               else
+                   return value;
+       }
+}