]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.databoard/src/org/simantics/databoard/util/DatatypeVisitorAdapter.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / util / DatatypeVisitorAdapter.java
index ae45f5b69b2bce68828f2e8dd062720c7c3d8d28..f8b8ef75ed2b0983fef91e69ea9d6f3683970d01 100644 (file)
@@ -1,99 +1,99 @@
-/*******************************************************************************\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.databoard.util;\r
-\r
-import org.simantics.databoard.type.ArrayType;\r
-import org.simantics.databoard.type.BooleanType;\r
-import org.simantics.databoard.type.ByteType;\r
-import org.simantics.databoard.type.Datatype;\r
-import org.simantics.databoard.type.DoubleType;\r
-import org.simantics.databoard.type.FloatType;\r
-import org.simantics.databoard.type.IntegerType;\r
-import org.simantics.databoard.type.LongType;\r
-import org.simantics.databoard.type.MapType;\r
-import org.simantics.databoard.type.OptionalType;\r
-import org.simantics.databoard.type.RecordType;\r
-import org.simantics.databoard.type.StringType;\r
-import org.simantics.databoard.type.UnionType;\r
-import org.simantics.databoard.type.VariantType;\r
-\r
-public class DatatypeVisitorAdapter implements Datatype.Visitor1 {\r
-\r
-       protected IdentityHashSet<Datatype> visited = new IdentityHashSet<Datatype>();\r
-\r
-       @Override\r
-       public void visit(ArrayType b, Object obj) {\r
-               if ( !visited.add(b) ) return; \r
-               b.componentType.accept(this, obj);\r
-       }\r
-\r
-       @Override\r
-       public void visit(BooleanType b, Object obj) {\r
-       }\r
-\r
-       @Override\r
-       public void visit(DoubleType b, Object obj) {\r
-       }\r
-\r
-       @Override\r
-       public void visit(FloatType b, Object obj) {\r
-       }\r
-\r
-       @Override\r
-       public void visit(IntegerType b, Object obj) {\r
-       }\r
-\r
-       @Override\r
-       public void visit(ByteType b, Object obj) {\r
-       }\r
-\r
-       @Override\r
-       public void visit(LongType b, Object obj) {\r
-       }\r
-\r
-       @Override\r
-       public void visit(OptionalType b, Object obj) {\r
-               if ( !visited.add(b) ) return; \r
-               b.componentType.accept(this, obj);\r
-       }\r
-\r
-       @Override\r
-       public void visit(RecordType b, Object obj) {\r
-               if ( !visited.add(b) ) return; \r
-               for (int i=0; i<b.getComponentCount(); i++)\r
-                       b.getComponent(i).type.accept(this, obj);\r
-       }\r
-\r
-       @Override\r
-       public void visit(StringType b, Object obj) {\r
-       }\r
-\r
-       @Override\r
-       public void visit(UnionType b, Object obj) {\r
-               if ( !visited.add(b) ) return; \r
-               for (int i=0; i<b.getComponentCount(); i++)\r
-                       b.getComponent(i).type.accept(this, obj);\r
-       }\r
-\r
-       @Override\r
-       public void visit(VariantType b, Object obj) {\r
-       }\r
-\r
-       @Override\r
-       public void visit(MapType b, Object obj) {\r
-               if ( !visited.add(b) ) return; \r
-               b.keyType.accept(this, obj);\r
-               b.valueType.accept(this, obj);\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.databoard.util;
+
+import org.simantics.databoard.type.ArrayType;
+import org.simantics.databoard.type.BooleanType;
+import org.simantics.databoard.type.ByteType;
+import org.simantics.databoard.type.Datatype;
+import org.simantics.databoard.type.DoubleType;
+import org.simantics.databoard.type.FloatType;
+import org.simantics.databoard.type.IntegerType;
+import org.simantics.databoard.type.LongType;
+import org.simantics.databoard.type.MapType;
+import org.simantics.databoard.type.OptionalType;
+import org.simantics.databoard.type.RecordType;
+import org.simantics.databoard.type.StringType;
+import org.simantics.databoard.type.UnionType;
+import org.simantics.databoard.type.VariantType;
+
+public class DatatypeVisitorAdapter implements Datatype.Visitor1 {
+
+       protected IdentityHashSet<Datatype> visited = new IdentityHashSet<Datatype>();
+
+       @Override
+       public void visit(ArrayType b, Object obj) {
+               if ( !visited.add(b) ) return; 
+               b.componentType.accept(this, obj);
+       }
+
+       @Override
+       public void visit(BooleanType b, Object obj) {
+       }
+
+       @Override
+       public void visit(DoubleType b, Object obj) {
+       }
+
+       @Override
+       public void visit(FloatType b, Object obj) {
+       }
+
+       @Override
+       public void visit(IntegerType b, Object obj) {
+       }
+
+       @Override
+       public void visit(ByteType b, Object obj) {
+       }
+
+       @Override
+       public void visit(LongType b, Object obj) {
+       }
+
+       @Override
+       public void visit(OptionalType b, Object obj) {
+               if ( !visited.add(b) ) return; 
+               b.componentType.accept(this, obj);
+       }
+
+       @Override
+       public void visit(RecordType b, Object obj) {
+               if ( !visited.add(b) ) return; 
+               for (int i=0; i<b.getComponentCount(); i++)
+                       b.getComponent(i).type.accept(this, obj);
+       }
+
+       @Override
+       public void visit(StringType b, Object obj) {
+       }
+
+       @Override
+       public void visit(UnionType b, Object obj) {
+               if ( !visited.add(b) ) return; 
+               for (int i=0; i<b.getComponentCount(); i++)
+                       b.getComponent(i).type.accept(this, obj);
+       }
+
+       @Override
+       public void visit(VariantType b, Object obj) {
+       }
+
+       @Override
+       public void visit(MapType b, Object obj) {
+               if ( !visited.add(b) ) return; 
+               b.keyType.accept(this, obj);
+               b.valueType.accept(this, obj);
+       }
+
+
+}