]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/view/Bean.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / view / Bean.java
index ca369d344f82a79f70433f219e96fd39a9d599d5..0ce59433e0bb23cfb408ce23915f92db844b38fa 100644 (file)
-package org.simantics.modeling.ui.view;\r
-\r
-import java.util.Collection;\r
-import java.util.Date;\r
-\r
-import org.simantics.charts.ontology.ChartResource;\r
-import org.simantics.databoard.Bindings;\r
-import org.simantics.databoard.util.URIStringUtils;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.common.utils.NameUtils;\r
-import org.simantics.db.common.utils.Versions;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.layer0.Layer0;\r
-import org.simantics.modeling.All;\r
-import org.simantics.modeling.ModelingResources;\r
-import org.simantics.modeling.adapters.ChangeInformation;\r
-import org.simantics.modeling.subscription.SubscriptionItemLabel;\r
-import org.simantics.utils.format.ValueFormat;\r
-\r
-public class Bean {\r
-\r
-       public String createdBy = "";\r
-       public String modifiedBy = "";\r
-       public long modifiedAt = 0;\r
-       public long createdAt = 0;\r
-       public String name = "";\r
-       public String path = "";\r
-       public String types = "";\r
-       \r
-       public Bean() {\r
-               \r
-       }\r
-\r
-       public Bean(ReadGraph graph, Resource r, ChangeInformation i, String baseURI) throws DatabaseException {\r
-               \r
-               Layer0 L0 = Layer0.getInstance(graph);\r
-               ModelingResources MOD = ModelingResources.getInstance(graph);\r
-               ChartResource CHART = ChartResource.getInstance(graph);\r
-\r
-               Collection<Resource> principalTypes = graph.getPrincipalTypes(r);\r
-\r
-               if (principalTypes.contains(MOD.Subscription)) {\r
-                       String label = graph.getPossibleRelatedValue2(r, L0.HasLabel, Bindings.STRING);\r
-                       setName((label != null && !label.isEmpty()) ? label : "<unnamed subscription>");\r
-               } else if (principalTypes.contains(MOD.Subscription_Item)) {\r
-                       String label = SubscriptionItemLabel.resolveLabel(graph, r, ValueFormat.Default, true, true, false);\r
-                       setName(label);\r
-               } else if (principalTypes.contains(CHART.Chart_Item)) {\r
-                       String label = graph.getPossibleRelatedValue2(r, L0.HasLabel, Bindings.STRING);\r
-                       setName((label != null && !label.isEmpty()) ? label : "<unlabeled chart item>");\r
-               } else {\r
-\r
-                       Resource possibleComponent = graph.getPossibleObject(r, MOD.ElementToComponent);\r
-                       Resource possibleComposite = graph.getPossibleObject(r, MOD.DiagramToComposite);\r
-                       \r
-                       Resource nameResource = r;\r
-                       if(possibleComponent != null) nameResource = possibleComponent;\r
-                       if(possibleComposite != null) nameResource = possibleComposite;\r
-\r
-                       String name = Versions.getStandardNameString(graph, nameResource);\r
-                       \r
-                       if(possibleComponent != null) name += " Element";\r
-                       if(possibleComposite != null) name += " Diagram";\r
-                       \r
-                       setName(name);\r
-                       \r
-               }\r
-               \r
-               StringBuilder types = new StringBuilder();\r
-               for(Resource t : principalTypes) {\r
-                       if(types.length() > 0) types.append(" ");\r
-                       types.append(NameUtils.getSafeName(graph, t));\r
-               }\r
-               \r
-               setTypes(types.toString());\r
-               \r
-               Resource parent = graph.getPossibleObject(r, L0.PartOf);\r
-               if(parent != null) {\r
-                       String uri = graph.getPossibleURI(parent);\r
-                       if(uri.endsWith("/__CONTAINER__/__DIAGRAM__")) uri = uri.substring(0, uri.length()-"/__CONTAINER__/__DIAGRAM__".length());\r
-                       if(uri.endsWith("/__CONTAINER__")) uri = uri.substring(0, uri.length()-"/__CONTAINER__".length());\r
-                       if(uri.equals(baseURI)) uri = "<selected resource>";\r
-                       if(uri.startsWith(baseURI)) uri = uri.substring(baseURI.length());\r
-                       if(uri.startsWith("/Configuration/")) uri = uri.substring("/Configuration/".length());\r
-\r
-                       uri = uri.replace("http://Projects/Development%20Project/", "");\r
-                       uri = URIStringUtils.unescape(uri);\r
-                       \r
-                       if(graph.isInstanceOf(parent, MOD.Subscription)) {\r
-\r
-                               String name = graph.getPossibleRelatedValue(parent, L0.HasName, Bindings.STRING);\r
-                               String label = graph.getPossibleRelatedValue(parent, L0.HasLabel, Bindings.STRING);\r
-                               uri = uri.replace(name, label);\r
-                               \r
-                       }\r
-                       \r
-                       setPath(uri);\r
-               } else {\r
-                       setPath("");\r
-               }\r
-               \r
-               setCreatedBy(i.createdBy);\r
-               setModifiedBy(i.modifiedBy);\r
-               setModifiedAt(i.modifiedAt);\r
-               setCreatedAt(i.createdAt);\r
-               \r
-       }\r
-\r
-       public String getCreatedBy() {\r
-               return createdBy;\r
-       }\r
-\r
-       public void setCreatedBy(String createdBy) {\r
-               this.createdBy = createdBy;\r
-       }\r
-\r
-       public String getModifiedBy() {\r
-               return modifiedBy;\r
-       }\r
-\r
-       public void setModifiedBy(String modifiedBy) {\r
-               this.modifiedBy = modifiedBy;\r
-       }\r
-\r
-       public String getModifiedAt() {\r
-               return All.sdfLong.format(new Date(modifiedAt));\r
-       }\r
-\r
-       public void setModifiedAt(long modifiedAt) {\r
-               this.modifiedAt = modifiedAt;\r
-       }\r
-\r
-       public String getCreatedAt() {\r
-               return All.sdfLong.format(new Date(createdAt));\r
-       }\r
-\r
-       public void setCreatedAt(long createdAt) {\r
-               this.createdAt = createdAt;\r
-       }\r
-\r
-       public String getName() {\r
-               return name;\r
-       }\r
-\r
-       public void setName(String name) {\r
-               this.name = name;\r
-       }\r
-\r
-       public String getPath() {\r
-               return path;\r
-       }\r
-\r
-       public void setPath(String path) {\r
-               this.path = path;\r
-       }\r
-\r
-       public String getTypes() {\r
-               return types;\r
-       }\r
-\r
-       public void setTypes(String types) {\r
-               this.types = types;\r
-       }\r
-\r
+package org.simantics.modeling.ui.view;
+
+import java.util.Collection;
+import java.util.Date;
+
+import org.simantics.charts.ontology.ChartResource;
+import org.simantics.databoard.Bindings;
+import org.simantics.databoard.util.URIStringUtils;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.common.utils.NameUtils;
+import org.simantics.db.common.utils.Versions;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.layer0.Layer0;
+import org.simantics.modeling.All;
+import org.simantics.modeling.ModelingResources;
+import org.simantics.modeling.adapters.ChangeInformation;
+import org.simantics.modeling.subscription.SubscriptionItemLabel;
+import org.simantics.utils.format.ValueFormat;
+
+public class Bean {
+
+       public String createdBy = "";
+       public String modifiedBy = "";
+       public long modifiedAt = 0;
+       public long createdAt = 0;
+       public String name = "";
+       public String path = "";
+       public String types = "";
+       
+       public Bean() {
+               
+       }
+
+       public Bean(ReadGraph graph, Resource r, ChangeInformation i, String baseURI) throws DatabaseException {
+               
+               Layer0 L0 = Layer0.getInstance(graph);
+               ModelingResources MOD = ModelingResources.getInstance(graph);
+               ChartResource CHART = ChartResource.getInstance(graph);
+
+               Collection<Resource> principalTypes = graph.getPrincipalTypes(r);
+
+               if (principalTypes.contains(MOD.Subscription)) {
+                       String label = graph.getPossibleRelatedValue2(r, L0.HasLabel, Bindings.STRING);
+                       setName((label != null && !label.isEmpty()) ? label : "<unnamed subscription>");
+               } else if (principalTypes.contains(MOD.Subscription_Item)) {
+                       String label = SubscriptionItemLabel.resolveLabel(graph, r, ValueFormat.Default, true, true, false);
+                       setName(label);
+               } else if (principalTypes.contains(CHART.Chart_Item)) {
+                       String label = graph.getPossibleRelatedValue2(r, L0.HasLabel, Bindings.STRING);
+                       setName((label != null && !label.isEmpty()) ? label : "<unlabeled chart item>");
+               } else {
+
+                       Resource possibleComponent = graph.getPossibleObject(r, MOD.ElementToComponent);
+                       Resource possibleComposite = graph.getPossibleObject(r, MOD.DiagramToComposite);
+                       
+                       Resource nameResource = r;
+                       if(possibleComponent != null) nameResource = possibleComponent;
+                       if(possibleComposite != null) nameResource = possibleComposite;
+
+                       String name = Versions.getStandardNameString(graph, nameResource);
+                       
+                       if(possibleComponent != null) name += " Element";
+                       if(possibleComposite != null) name += " Diagram";
+                       
+                       setName(name);
+                       
+               }
+               
+               StringBuilder types = new StringBuilder();
+               for(Resource t : principalTypes) {
+                       if(types.length() > 0) types.append(" ");
+                       types.append(NameUtils.getSafeName(graph, t));
+               }
+               
+               setTypes(types.toString());
+               
+               Resource parent = graph.getPossibleObject(r, L0.PartOf);
+               if(parent != null) {
+                       String uri = graph.getPossibleURI(parent);
+                       if(uri.endsWith("/__CONTAINER__/__DIAGRAM__")) uri = uri.substring(0, uri.length()-"/__CONTAINER__/__DIAGRAM__".length());
+                       if(uri.endsWith("/__CONTAINER__")) uri = uri.substring(0, uri.length()-"/__CONTAINER__".length());
+                       if(uri.equals(baseURI)) uri = "<selected resource>";
+                       if(uri.startsWith(baseURI)) uri = uri.substring(baseURI.length());
+                       if(uri.startsWith("/Configuration/")) uri = uri.substring("/Configuration/".length());
+
+                       uri = uri.replace("http://Projects/Development%20Project/", "");
+                       uri = URIStringUtils.unescape(uri);
+                       
+                       if(graph.isInstanceOf(parent, MOD.Subscription)) {
+
+                               String name = graph.getPossibleRelatedValue(parent, L0.HasName, Bindings.STRING);
+                               String label = graph.getPossibleRelatedValue(parent, L0.HasLabel, Bindings.STRING);
+                               uri = uri.replace(name, label);
+                               
+                       }
+                       
+                       setPath(uri);
+               } else {
+                       setPath("");
+               }
+               
+               setCreatedBy(i.createdBy);
+               setModifiedBy(i.modifiedBy);
+               setModifiedAt(i.modifiedAt);
+               setCreatedAt(i.createdAt);
+               
+       }
+
+       public String getCreatedBy() {
+               return createdBy;
+       }
+
+       public void setCreatedBy(String createdBy) {
+               this.createdBy = createdBy;
+       }
+
+       public String getModifiedBy() {
+               return modifiedBy;
+       }
+
+       public void setModifiedBy(String modifiedBy) {
+               this.modifiedBy = modifiedBy;
+       }
+
+       public String getModifiedAt() {
+               return All.sdfLong.format(new Date(modifiedAt));
+       }
+
+       public void setModifiedAt(long modifiedAt) {
+               this.modifiedAt = modifiedAt;
+       }
+
+       public String getCreatedAt() {
+               return All.sdfLong.format(new Date(createdAt));
+       }
+
+       public void setCreatedAt(long createdAt) {
+               this.createdAt = createdAt;
+       }
+
+       public String getName() {
+               return name;
+       }
+
+       public void setName(String name) {
+               this.name = name;
+       }
+
+       public String getPath() {
+               return path;
+       }
+
+       public void setPath(String path) {
+               this.path = path;
+       }
+
+       public String getTypes() {
+               return types;
+       }
+
+       public void setTypes(String types) {
+               this.types = types;
+       }
+
 }
\ No newline at end of file