]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/GraphFactoryStringModifier.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.graph.impl / src / org / simantics / browsing / ui / graph / impl / GraphFactoryStringModifier.java
index d20745006b9c83c5d4a89e5849f043f818a865cb..6d0e43d176ca0ced2ccc7be8457a12ec42ccfcd3 100644 (file)
@@ -1,78 +1,78 @@
-/*******************************************************************************\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.browsing.ui.graph.impl;\r
-\r
-import org.simantics.db.RequestProcessor;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.WriteGraph;\r
-import org.simantics.db.common.request.WriteRequest;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.utils.datastructures.Callback;\r
-import org.simantics.utils.ui.ErrorLogger;\r
-\r
-/**\r
- * Please implement:\r
- * <ul>\r
- * <li>{@link #createModifierInput(String)} - constructs an input for\r
- * {@link org.simantics.db.layer0.adapter.Modifier#modify(WriteGraph, Object)}\r
- * from the specified label given by the user.\r
- * <li>{@link #doModify(WriteGraph, String)} - perform the requested\r
- * modification into the graph.</li>\r
- * </ul>\r
- * \r
- * <p>\r
- * See {@link AbstractStringModifier} for more information.\r
- * </p>\r
- * \r
- * @author Tuukka Lehtonen\r
- * \r
- * @param <T> the input class of the used\r
- *        {@link org.simantics.db.layer0.adapter.Modifier}\r
- */\r
-public class GraphFactoryStringModifier extends AbstractFactoryStringModifier {\r
-\r
-    /**\r
-     * @param context\r
-     * @param session\r
-     */\r
-    public GraphFactoryStringModifier(Resource subject, Resource predicate, Resource object, RequestProcessor processor) {\r
-        super(subject, predicate, object, processor);\r
-    }\r
-\r
-    @Override\r
-    public final void doModify(final String label) {\r
-        session.asyncRequest(new WriteRequest() {\r
-            @Override\r
-            public void perform(WriteGraph graph) throws DatabaseException {\r
-                doModifyWithFactory(graph, label);\r
-            }\r
-        }, new Callback<DatabaseException>() {\r
-            @Override\r
-            public void run(DatabaseException parameter) {\r
-                if (parameter != null)\r
-                    ErrorLogger.defaultLogError(parameter);\r
-            }\r
-        });\r
-    }\r
-\r
-    public void doModifyWithFactory(WriteGraph graph, String label) throws DatabaseException {\r
-        if (getModifierFactory() != null)\r
-            getModifier().modify(graph, label);\r
-        else\r
-            doModify(graph, label);\r
-    }\r
-\r
-    public void doModify(WriteGraph graph, String label) throws DatabaseException {\r
-        getModifier().modify(graph, label);\r
-    }\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.browsing.ui.graph.impl;
+
+import org.simantics.db.RequestProcessor;
+import org.simantics.db.Resource;
+import org.simantics.db.WriteGraph;
+import org.simantics.db.common.request.WriteRequest;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.utils.datastructures.Callback;
+import org.simantics.utils.ui.ErrorLogger;
+
+/**
+ * Please implement:
+ * <ul>
+ * <li>{@link #createModifierInput(String)} - constructs an input for
+ * {@link org.simantics.db.layer0.adapter.Modifier#modify(WriteGraph, Object)}
+ * from the specified label given by the user.
+ * <li>{@link #doModify(WriteGraph, String)} - perform the requested
+ * modification into the graph.</li>
+ * </ul>
+ * 
+ * <p>
+ * See {@link AbstractStringModifier} for more information.
+ * </p>
+ * 
+ * @author Tuukka Lehtonen
+ * 
+ * @param <T> the input class of the used
+ *        {@link org.simantics.db.layer0.adapter.Modifier}
+ */
+public class GraphFactoryStringModifier extends AbstractFactoryStringModifier {
+
+    /**
+     * @param context
+     * @param session
+     */
+    public GraphFactoryStringModifier(Resource subject, Resource predicate, Resource object, RequestProcessor processor) {
+        super(subject, predicate, object, processor);
+    }
+
+    @Override
+    public final void doModify(final String label) {
+        session.asyncRequest(new WriteRequest() {
+            @Override
+            public void perform(WriteGraph graph) throws DatabaseException {
+                doModifyWithFactory(graph, label);
+            }
+        }, new Callback<DatabaseException>() {
+            @Override
+            public void run(DatabaseException parameter) {
+                if (parameter != null)
+                    ErrorLogger.defaultLogError(parameter);
+            }
+        });
+    }
+
+    public void doModifyWithFactory(WriteGraph graph, String label) throws DatabaseException {
+        if (getModifierFactory() != null)
+            getModifier().modify(graph, label);
+        else
+            doModify(graph, label);
+    }
+
+    public void doModify(WriteGraph graph, String label) throws DatabaseException {
+        getModifier().modify(graph, label);
+    }
+
+};