]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.databoard/src/org/simantics/databoard/accessor/interestset/InterestSet.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / accessor / interestset / InterestSet.java
index bc9a54f8b711552784429e431ab4240d9d86b392..7e84868b83dd18452836d07f1d87450470199531 100644 (file)
@@ -1,34 +1,34 @@
-/*******************************************************************************\r
- *  Copyright (c) 2010 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
+/*******************************************************************************
+ *  Copyright (c) 2010 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.accessor.interestset;
 
-import org.simantics.databoard.annotations.Union;\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
+import org.simantics.databoard.annotations.Union;
+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;
 
 /**
- * InterestSet is a description about what is monitored in a data model.\r
+ * InterestSet is a description about what is monitored in a data model.
  *
  * @author Toni Kalajainen <toni.kalajainen@vtt.fi>
  */
@@ -47,11 +47,11 @@ import org.simantics.databoard.type.VariantType;
            VariantInterestSet.class
            })
 public abstract class InterestSet {
-\r
-//     private static final String[] EMPTY_ARRAY = new String[0]; \r
-       \r
+
+//     private static final String[] EMPTY_ARRAY = new String[0]; 
+       
        /**
-        * Returns true, if interested in notifications of modifications, this question excludes\r
+        * Returns true, if interested in notifications of modifications, this question excludes
         * an interest to the values.
         * 
         * @return true if interested in notifications
@@ -159,18 +159,18 @@ public abstract class InterestSet {
                }
                
                throw new IllegalArgumentException(type.toSingleLineString());          
-       }\r
-\r
-//     public String[] getCustomEvents() {\r
-//             return customEvents;\r
-//     }\r
-\r
-//     public void setCustomEvents(String[] customEvents) {\r
-//             this.customEvents = customEvents;\r
-//     }\r
-       /** A list of custom event types of interest */\r
-//     public String[] customEvents = EMPTY_ARRAY;\r
-       \r
+       }
+
+//     public String[] getCustomEvents() {
+//             return customEvents;
+//     }
+
+//     public void setCustomEvents(String[] customEvents) {
+//             this.customEvents = customEvents;
+//     }
+       /** A list of custom event types of interest */
+//     public String[] customEvents = EMPTY_ARRAY;
+       
        
 }