]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.databoard/src/org/simantics/databoard/accessor/event/CustomEvent.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / accessor / event / CustomEvent.java
index 7dbbc988979b9e13d0019c209fe84a2086c5eb48..7a23fb0135ca1efc6e25ed020120ddbfa6ba2d97 100644 (file)
@@ -1,43 +1,43 @@
-/*******************************************************************************\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
-package org.simantics.databoard.accessor.event;\r
-\r
-import org.simantics.databoard.accessor.reference.ChildReference;\r
-import org.simantics.databoard.binding.mutable.MutableVariant;\r
-\r
-/**\r
- * Custom Event\r
- *\r
- * @author Toni Kalajainen <toni.kalajainen@vtt.fi>\r
- */\r
-public class CustomEvent extends Event {\r
-\r
-       /** Event name */\r
-       public String name;\r
-       \r
-       /** Content Payload */\r
-       public MutableVariant content;\r
-       \r
-       public CustomEvent(String name, MutableVariant content) {\r
-               this.name = name;\r
-               this.content = content;\r
-       }\r
-       \r
-       @Override\r
-       public Event clone(ChildReference newReference) {\r
-               CustomEvent result = new CustomEvent(name, content.clone());\r
-               result.reference = newReference;\r
-               return result;\r
-       }\r
-\r
-}\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.event;
+
+import org.simantics.databoard.accessor.reference.ChildReference;
+import org.simantics.databoard.binding.mutable.MutableVariant;
+
+/**
+ * Custom Event
+ *
+ * @author Toni Kalajainen <toni.kalajainen@vtt.fi>
+ */
+public class CustomEvent extends Event {
+
+       /** Event name */
+       public String name;
+       
+       /** Content Payload */
+       public MutableVariant content;
+       
+       public CustomEvent(String name, MutableVariant content) {
+               this.name = name;
+               this.content = content;
+       }
+       
+       @Override
+       public Event clone(ChildReference newReference) {
+               CustomEvent result = new CustomEvent(name, content.clone());
+               result.reference = newReference;
+               return result;
+       }
+
+}
+