]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/adapter/impl/RelatedEntityNameModifier.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / adapter / impl / RelatedEntityNameModifier.java
index 8526918a6eb097783206226fa09ed81ba152f6a9..cc1f7bae4022eec650655ebfdad3958556aad503 100644 (file)
@@ -1,63 +1,63 @@
-/*******************************************************************************\r
- * Copyright (c) 2014 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
- *     Semantum Oy - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.db.layer0.adapter.impl;\r
-\r
-import org.simantics.databoard.Bindings;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.WriteGraph;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.layer0.adapter.StringModifier;\r
-import org.simantics.layer0.Layer0;\r
-\r
-/**\r
- * A modifier that enforces all the same naming validations as\r
- * {@link EntityNameModifier} but also makes sure that entities directly related\r
- * to the specified entity with the specified relation are renamed at the same\r
- * time.\r
- * \r
- * @author Tuukka Lehtonen\r
- * @see EntityNameModifier\r
- */\r
-public final class RelatedEntityNameModifier implements StringModifier {\r
-\r
-       private EntityNameModifier entityModifier;\r
-       private Resource entity;\r
-       private Resource relation;\r
-\r
-       public RelatedEntityNameModifier(ReadGraph graph, Resource entity, Resource property, Resource relation) throws DatabaseException {\r
-               this.entityModifier = new EntityNameModifier(graph, entity, property);\r
-               this.entity = entity;\r
-               this.relation = relation;\r
-       }\r
-\r
-       @Override\r
-       public String getValue() {\r
-               return entityModifier.getValue();\r
-       }\r
-\r
-       @Override\r
-       public String isValid(String value) {\r
-               return entityModifier.isValid(value);\r
-       }\r
-\r
-       @Override\r
-       final public void modify(WriteGraph graph, String value) throws DatabaseException {\r
-               entityModifier.modify(graph, value);\r
-\r
-               Layer0 L0 = Layer0.getInstance(graph);\r
-               String v = entityModifier.finalValue(value); \r
-               for (Resource related : graph.getObjects(entity, relation))\r
-                       graph.claimLiteral(related, L0.HasName, L0.NameOf, v, Bindings.STRING);\r
-       }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2014 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:
+ *     Semantum Oy - initial API and implementation
+ *******************************************************************************/
+package org.simantics.db.layer0.adapter.impl;
+
+import org.simantics.databoard.Bindings;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.WriteGraph;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.layer0.adapter.StringModifier;
+import org.simantics.layer0.Layer0;
+
+/**
+ * A modifier that enforces all the same naming validations as
+ * {@link EntityNameModifier} but also makes sure that entities directly related
+ * to the specified entity with the specified relation are renamed at the same
+ * time.
+ * 
+ * @author Tuukka Lehtonen
+ * @see EntityNameModifier
+ */
+public final class RelatedEntityNameModifier implements StringModifier {
+
+       private EntityNameModifier entityModifier;
+       private Resource entity;
+       private Resource relation;
+
+       public RelatedEntityNameModifier(ReadGraph graph, Resource entity, Resource property, Resource relation) throws DatabaseException {
+               this.entityModifier = new EntityNameModifier(graph, entity, property);
+               this.entity = entity;
+               this.relation = relation;
+       }
+
+       @Override
+       public String getValue() {
+               return entityModifier.getValue();
+       }
+
+       @Override
+       public String isValid(String value) {
+               return entityModifier.isValid(value);
+       }
+
+       @Override
+       final public void modify(WriteGraph graph, String value) throws DatabaseException {
+               entityModifier.modify(graph, value);
+
+               Layer0 L0 = Layer0.getInstance(graph);
+               String v = entityModifier.finalValue(value); 
+               for (Resource related : graph.getObjects(entity, relation))
+                       graph.claimLiteral(related, L0.HasName, L0.NameOf, v, Bindings.STRING);
+       }
+
+}