]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/widgets/StringPropertyModifier.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.swt / src / org / simantics / browsing / ui / swt / widgets / StringPropertyModifier.java
index e8ade01b0b5e2cb06a9ddeb05a48061ccb3ad8c3..a472300fbd1a8498b0f91cde2504a18e8421a444 100644 (file)
@@ -1,50 +1,50 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2012 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.browsing.ui.swt.widgets;\r
-\r
-import org.simantics.browsing.ui.swt.widgets.impl.TextModifyListenerImpl;\r
-import org.simantics.databoard.Bindings;\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.util.Layer0Utils;\r
-import org.simantics.db.management.ISessionContext;\r
-\r
-\r
-public class StringPropertyModifier extends TextModifyListenerImpl<Resource> {\r
-\r
-       final private String propertyURI;\r
-       final private boolean undo;\r
-       public StringPropertyModifier(ISessionContext context, String propertyURI) {\r
-               this(context, propertyURI,true);\r
-       }\r
-       \r
-       public StringPropertyModifier(ISessionContext context, String propertyURI, boolean undo) {\r
-               this.propertyURI = propertyURI;\r
-               this.undo = undo;\r
-       }\r
-\r
-       @Override\r
-       public void applyText(WriteGraph graph, Resource issue, String text) throws DatabaseException {\r
-               if (undo) {\r
-                       String meta =  propertyURI;\r
-                       int i = propertyURI.lastIndexOf("/");\r
-                       if (i > 0)\r
-                               meta = meta.substring(i+1);\r
-                       Layer0Utils.addCommentMetadata(graph, "Modify String " +meta);\r
-                       graph.markUndoPoint();\r
-               }\r
-               graph.claimLiteral(issue, graph.getResource(propertyURI), text, Bindings.STRING);\r
-               \r
-       }\r
-       \r
+/*******************************************************************************
+ * Copyright (c) 2007, 2012 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.browsing.ui.swt.widgets;
+
+import org.simantics.browsing.ui.swt.widgets.impl.TextModifyListenerImpl;
+import org.simantics.databoard.Bindings;
+import org.simantics.db.Resource;
+import org.simantics.db.WriteGraph;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.layer0.util.Layer0Utils;
+import org.simantics.db.management.ISessionContext;
+
+
+public class StringPropertyModifier extends TextModifyListenerImpl<Resource> {
+
+       final private String propertyURI;
+       final private boolean undo;
+       public StringPropertyModifier(ISessionContext context, String propertyURI) {
+               this(context, propertyURI,true);
+       }
+       
+       public StringPropertyModifier(ISessionContext context, String propertyURI, boolean undo) {
+               this.propertyURI = propertyURI;
+               this.undo = undo;
+       }
+
+       @Override
+       public void applyText(WriteGraph graph, Resource issue, String text) throws DatabaseException {
+               if (undo) {
+                       String meta =  propertyURI;
+                       int i = propertyURI.lastIndexOf("/");
+                       if (i > 0)
+                               meta = meta.substring(i+1);
+                       Layer0Utils.addCommentMetadata(graph, "Modify String " +meta);
+                       graph.markUndoPoint();
+               }
+               graph.claimLiteral(issue, graph.getResource(propertyURI), text, Bindings.STRING);
+               
+       }
+       
 }
\ No newline at end of file