]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.image.ui/src/org/simantics/image/ui/modelBrowser/ImageNode.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.image.ui / src / org / simantics / image / ui / modelBrowser / ImageNode.java
index 9d6ea46f9b9aeee8f0d6ac7f1e5c9a9e3f46f16e..f31ab002b40f09a41da28247b3d614c055987542 100644 (file)
@@ -1,46 +1,46 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 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.image.ui.modelBrowser;\r
-\r
-import org.simantics.browsing.ui.common.node.AbstractNode;\r
-import org.simantics.browsing.ui.common.node.IDeletable;\r
-import org.simantics.browsing.ui.common.node.IModifiable;\r
-import org.simantics.db.Resource;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public class ImageNode extends AbstractNode<Resource> implements IDeletable, IModifiable {\r
-\r
-    public static class ImageResource {\r
-        Resource r = null;\r
-        public ImageResource(Resource r) {\r
-            this.r = r;\r
-        }\r
-        public Resource getResource() {\r
-            return r;\r
-        }\r
-    }\r
-\r
-    public ImageNode(Resource resource) {\r
-        super(resource);\r
-    }\r
-\r
-    @SuppressWarnings("rawtypes")\r
-    @Override\r
-    public Object getAdapter(Class adapter) {\r
-        if(adapter.equals(ImageResource.class))\r
-            return new ImageResource(data);\r
-        return super.getAdapter(adapter);\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 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.image.ui.modelBrowser;
+
+import org.simantics.browsing.ui.common.node.AbstractNode;
+import org.simantics.browsing.ui.common.node.IDeletable;
+import org.simantics.browsing.ui.common.node.IModifiable;
+import org.simantics.db.Resource;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public class ImageNode extends AbstractNode<Resource> implements IDeletable, IModifiable {
+
+    public static class ImageResource {
+        Resource r = null;
+        public ImageResource(Resource r) {
+            this.r = r;
+        }
+        public Resource getResource() {
+            return r;
+        }
+    }
+
+    public ImageNode(Resource resource) {
+        super(resource);
+    }
+
+    @SuppressWarnings("rawtypes")
+    @Override
+    public Object getAdapter(Class adapter) {
+        if(adapter.equals(ImageResource.class))
+            return new ImageResource(data);
+        return super.getAdapter(adapter);
+    }
+
+}