]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/modelBrowser/model/Model.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / modelBrowser / model / Model.java
index 55635f98a0644e65367f5958f0171cfd5e4d7036..38412b434cc9431ea51c3a6f5a7f91ec05679365 100644 (file)
-/*******************************************************************************\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.io.File;\r
-import java.util.ArrayList;\r
-import java.util.Collection;\r
-\r
-import org.eclipse.core.runtime.IPath;\r
-import org.eclipse.core.runtime.Platform;\r
-import org.eclipse.jface.resource.ImageDescriptor;\r
-import org.simantics.browsing.ui.common.node.IModifiable;\r
-import org.simantics.browsing.ui.content.Labeler.Modifier;\r
-import org.simantics.browsing.ui.graph.impl.LabelModifier;\r
-import org.simantics.databoard.Bindings;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.Session;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.layer0.Layer0;\r
-import org.simantics.modeling.ui.Activator;\r
-import org.simantics.simulation.ontology.SimulationResource;\r
-\r
-@Deprecated\r
-public class Model extends Node implements IModifiable {\r
-\r
-    final static boolean showFolders = true;\r
-\r
-    Resource configuration;\r
-    Session session;\r
-\r
-    public Model(ReadGraph g, Resource resource) throws DatabaseException {\r
-        super(resource);\r
-        this.configuration = g.getPossibleObject(resource, SimulationResource.getInstance(g).HasConfiguration);\r
-        this.session = g.getSession();\r
-    }\r
-\r
-    public File getModelDir() throws DatabaseException {\r
-        IPath location = Platform.getLocation();\r
-        File f = location.toFile();\r
-\r
-        String modelName =\r
-            (String) session.syncRequest(\r
-                    org.simantics.db.common.request.Queries.getRelatedValue(resource, Layer0.URIs.HasName, Bindings.STRING));\r
-\r
-        File modelDir = new File(f, modelName);\r
-        return modelDir;\r
-    }\r
-\r
-    @Override\r
-    public Collection<?> getChildren(ReadGraph g) throws DatabaseException {\r
-        Collection<Object> ret = new ArrayList<Object>(3);\r
-        if(configuration != null) {\r
-            ret.add(new Decorator(g.adapt(configuration, INode.class)) {\r
-                @Override\r
-                public String getLabel(ReadGraph g) {\r
-                    return "Configuration";\r
-                }\r
-            });\r
-        }\r
-        ret.add(new Experiments(resource));\r
-        ret.add(new States(resource));\r
-//        ret.add(new Queries(g, resource));\r
-        ret.add(new Charts(resource));\r
-        ret.add(new Subscriptions(resource));\r
-        ret.add(new Images(resource));\r
-//        ret.add(new Spreadsheets(resource));\r
-        ret.add(new RelationViews(resource));\r
-\r
-        /*if(!showFolders) {\r
-                       ArrayList<Object> flatten = new ArrayList<Object>();\r
-                       for(INode n : ret)\r
-                               flatten.addAll(n.getChildren(g));\r
-                       return flatten;\r
-               }*/\r
-        return ret;\r
-    }\r
-\r
-    @Override\r
-    public ImageDescriptor getImage(ReadGraph g) {\r
-        return Activator.MODEL_ICON;\r
-    }\r
-\r
-    @Override\r
-    public boolean equals(Object obj) {\r
-        if(this == obj)\r
-            return true;\r
-        if(obj == null)\r
-            return false;\r
-        if(!getClass().equals(obj.getClass()))\r
-            return false;\r
-        Model other = (Model)obj;\r
-        if(configuration == null) {\r
-            return resource.equals(other.resource) && other.configuration == null;\r
-        } else {\r
-            return resource.equals(other.resource)\r
-            && configuration.equals(other.configuration);\r
-        }\r
-    }\r
-\r
-    @Override\r
-    public int hashCode() {\r
-        if(configuration == null) {\r
-            return getClass().hashCode()*31 + resource.hashCode();\r
-        } else {\r
-            return (getClass().hashCode()*31\r
-                    +  configuration.hashCode())*31 + resource.hashCode();\r
-        }\r
-    }\r
-\r
-    @Override\r
-    public Modifier getModifier(final Session session, String columnId) {\r
-        return new LabelModifier(session, resource);\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.io.File;
+import java.util.ArrayList;
+import java.util.Collection;
+
+import org.eclipse.core.runtime.IPath;
+import org.eclipse.core.runtime.Platform;
+import org.eclipse.jface.resource.ImageDescriptor;
+import org.simantics.browsing.ui.common.node.IModifiable;
+import org.simantics.browsing.ui.content.Labeler.Modifier;
+import org.simantics.browsing.ui.graph.impl.LabelModifier;
+import org.simantics.databoard.Bindings;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.Session;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.layer0.Layer0;
+import org.simantics.modeling.ui.Activator;
+import org.simantics.simulation.ontology.SimulationResource;
+
+@Deprecated
+public class Model extends Node implements IModifiable {
+
+    final static boolean showFolders = true;
+
+    Resource configuration;
+    Session session;
+
+    public Model(ReadGraph g, Resource resource) throws DatabaseException {
+        super(resource);
+        this.configuration = g.getPossibleObject(resource, SimulationResource.getInstance(g).HasConfiguration);
+        this.session = g.getSession();
+    }
+
+    public File getModelDir() throws DatabaseException {
+        IPath location = Platform.getLocation();
+        File f = location.toFile();
+
+        String modelName =
+            (String) session.syncRequest(
+                    org.simantics.db.common.request.Queries.getRelatedValue(resource, Layer0.URIs.HasName, Bindings.STRING));
+
+        File modelDir = new File(f, modelName);
+        return modelDir;
+    }
+
+    @Override
+    public Collection<?> getChildren(ReadGraph g) throws DatabaseException {
+        Collection<Object> ret = new ArrayList<Object>(3);
+        if(configuration != null) {
+            ret.add(new Decorator(g.adapt(configuration, INode.class)) {
+                @Override
+                public String getLabel(ReadGraph g) {
+                    return "Configuration";
+                }
+            });
+        }
+        ret.add(new Experiments(resource));
+        ret.add(new States(resource));
+//        ret.add(new Queries(g, resource));
+        ret.add(new Charts(resource));
+        ret.add(new Subscriptions(resource));
+        ret.add(new Images(resource));
+//        ret.add(new Spreadsheets(resource));
+        ret.add(new RelationViews(resource));
+
+        /*if(!showFolders) {
+                       ArrayList<Object> flatten = new ArrayList<Object>();
+                       for(INode n : ret)
+                               flatten.addAll(n.getChildren(g));
+                       return flatten;
+               }*/
+        return ret;
+    }
+
+    @Override
+    public ImageDescriptor getImage(ReadGraph g) {
+        return Activator.MODEL_ICON;
+    }
+
+    @Override
+    public boolean equals(Object obj) {
+        if(this == obj)
+            return true;
+        if(obj == null)
+            return false;
+        if(!getClass().equals(obj.getClass()))
+            return false;
+        Model other = (Model)obj;
+        if(configuration == null) {
+            return resource.equals(other.resource) && other.configuration == null;
+        } else {
+            return resource.equals(other.resource)
+            && configuration.equals(other.configuration);
+        }
+    }
+
+    @Override
+    public int hashCode() {
+        if(configuration == null) {
+            return getClass().hashCode()*31 + resource.hashCode();
+        } else {
+            return (getClass().hashCode()*31
+                    +  configuration.hashCode())*31 + resource.hashCode();
+        }
+    }
+
+    @Override
+    public Modifier getModifier(final Session session, String columnId) {
+        return new LabelModifier(session, resource);
+    }
+}