]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/modelBrowser/model/Images.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / modelBrowser / model / Images.java
index 6bedaebf80bbb66c5c90875d1dfd21675d3c7c87..6482c14315d700cd17f6547f0f2ba1492768cf4a 100644 (file)
@@ -1,74 +1,74 @@
-/*******************************************************************************\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.modeling.ui.modelBrowser.model;\r
-\r
-import java.util.ArrayList;\r
-import java.util.Collection;\r
-\r
-import org.eclipse.jface.resource.ImageDescriptor;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.diagram.stubs.ImageResource;\r
-import org.simantics.layer0.Layer0;\r
-import org.simantics.modeling.ui.Activator;\r
-\r
-/**\r
- * \r
- * @author J-P Laine\r
- *\r
- * @Deprecated Use org.simantics.image instead\r
- */\r
-@Deprecated\r
-public class Images extends Node {\r
-\r
-    public Images(Resource resource) {\r
-        super(resource);\r
-    }\r
-\r
-    @Override\r
-    public Resource getResource() {\r
-        return resource;\r
-    }\r
-\r
-    @Override\r
-    public String getLabel(ReadGraph g) {\r
-        return "Images";\r
-    }\r
-\r
-    @Override\r
-    public Collection<?> getChildren(ReadGraph g) throws DatabaseException {\r
-       Layer0 b = Layer0.getInstance(g);\r
-        ImageResource img = ImageResource.getInstance(g);\r
-        Collection<INode> ret = new ArrayList<INode>();\r
-\r
-        for (Resource r : g.getObjects(resource, b.ConsistsOf)) {\r
-            if (g.isInstanceOf(r, img.Image)) {\r
-                ret.add(g.adapt(r, INode.class));\r
-            }\r
-        }\r
-        return ret;\r
-    }\r
-\r
-    @Override\r
-    public ImageDescriptor getImage(ReadGraph g) {\r
-        return Activator.IMAGES_ICON;\r
-    }\r
-\r
-    @SuppressWarnings("unchecked")\r
-    @Override\r
-    public Object getAdapter(Class adapter) {\r
-        // deny adaptability, prevent showing of properties this way.\r
-        return null;\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.modeling.ui.modelBrowser.model;
+
+import java.util.ArrayList;
+import java.util.Collection;
+
+import org.eclipse.jface.resource.ImageDescriptor;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.diagram.stubs.ImageResource;
+import org.simantics.layer0.Layer0;
+import org.simantics.modeling.ui.Activator;
+
+/**
+ * 
+ * @author J-P Laine
+ *
+ * @Deprecated Use org.simantics.image instead
+ */
+@Deprecated
+public class Images extends Node {
+
+    public Images(Resource resource) {
+        super(resource);
+    }
+
+    @Override
+    public Resource getResource() {
+        return resource;
+    }
+
+    @Override
+    public String getLabel(ReadGraph g) {
+        return "Images";
+    }
+
+    @Override
+    public Collection<?> getChildren(ReadGraph g) throws DatabaseException {
+       Layer0 b = Layer0.getInstance(g);
+        ImageResource img = ImageResource.getInstance(g);
+        Collection<INode> ret = new ArrayList<INode>();
+
+        for (Resource r : g.getObjects(resource, b.ConsistsOf)) {
+            if (g.isInstanceOf(r, img.Image)) {
+                ret.add(g.adapt(r, INode.class));
+            }
+        }
+        return ret;
+    }
+
+    @Override
+    public ImageDescriptor getImage(ReadGraph g) {
+        return Activator.IMAGES_ICON;
+    }
+
+    @SuppressWarnings("unchecked")
+    @Override
+    public Object getAdapter(Class adapter) {
+        // deny adaptability, prevent showing of properties this way.
+        return null;
+    }
+
 }
\ No newline at end of file