]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.wiki.ui/src/org/simantics/wiki/ui/DefaultWikiTemplateFactory.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.wiki.ui / src / org / simantics / wiki / ui / DefaultWikiTemplateFactory.java
index 68809e107e280cdb21e143383fcfa94d219d27c9..aee15046a03ec6de783af28bb9b21c71c871afed 100644 (file)
@@ -1,51 +1,51 @@
-/*******************************************************************************\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.wiki.ui;\r
-\r
-import org.simantics.databoard.Bindings;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.document.DocumentResource;\r
-import org.simantics.layer0.Layer0;\r
-\r
-public class DefaultWikiTemplateFactory implements DocumentFactory {\r
-\r
-    String template;\r
-\r
-    public DefaultWikiTemplateFactory(ReadGraph graph, Resource r) {\r
-        template = "";\r
-\r
-        try {\r
-            Layer0 l0 = Layer0.getInstance(graph);\r
-            DocumentResource DOC = DocumentResource.getInstance(graph);\r
-            Resource resource = r;\r
-\r
-            while(resource != null) {\r
-                if(graph.hasStatement(resource, DOC.HasDocumentTemplate)) {\r
-                    Resource dt = graph.getSingleObject(resource, DOC.HasDocumentTemplate);\r
-                    template = (String)graph.getRelatedValue(dt, DOC.HasDocumentation, Bindings.STRING);\r
-                    break;\r
-                }\r
-                resource = graph.getPossibleObject(resource, l0.PartOf);\r
-            }\r
-        } catch (DatabaseException e) {\r
-            e.printStackTrace();\r
-        }\r
-    }\r
-\r
-    @Override\r
-    public String createDocument() {\r
-        return template;\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.wiki.ui;
+
+import org.simantics.databoard.Bindings;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.document.DocumentResource;
+import org.simantics.layer0.Layer0;
+
+public class DefaultWikiTemplateFactory implements DocumentFactory {
+
+    String template;
+
+    public DefaultWikiTemplateFactory(ReadGraph graph, Resource r) {
+        template = "";
+
+        try {
+            Layer0 l0 = Layer0.getInstance(graph);
+            DocumentResource DOC = DocumentResource.getInstance(graph);
+            Resource resource = r;
+
+            while(resource != null) {
+                if(graph.hasStatement(resource, DOC.HasDocumentTemplate)) {
+                    Resource dt = graph.getSingleObject(resource, DOC.HasDocumentTemplate);
+                    template = (String)graph.getRelatedValue(dt, DOC.HasDocumentation, Bindings.STRING);
+                    break;
+                }
+                resource = graph.getPossibleObject(resource, l0.PartOf);
+            }
+        } catch (DatabaseException e) {
+            e.printStackTrace();
+        }
+    }
+
+    @Override
+    public String createDocument() {
+        return template;
+    }
+
+}