]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.diagram.profile/src/org/simantics/diagram/profile/view/SCLEditorComposite.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.diagram.profile / src / org / simantics / diagram / profile / view / SCLEditorComposite.java
index 97d2598ed742f7dd8c26e55e3de7302f93984394..c73efe63f1b3df5a549bd5f6ab183d922db24b81 100644 (file)
@@ -1,71 +1,71 @@
-/*******************************************************************************\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.diagram.profile.view;\r
-\r
-import org.eclipse.jface.layout.GridDataFactory;\r
-import org.eclipse.jface.layout.GridLayoutFactory;\r
-import org.eclipse.swt.SWT;\r
-import org.eclipse.swt.widgets.Composite;\r
-import org.eclipse.swt.widgets.Display;\r
-import org.eclipse.ui.IWorkbenchSite;\r
-import org.simantics.browsing.ui.swt.widgets.Button;\r
-import org.simantics.browsing.ui.swt.widgets.SCLEditor;\r
-import org.simantics.browsing.ui.swt.widgets.StringPropertyFactory;\r
-import org.simantics.browsing.ui.swt.widgets.impl.SelectionListenerImpl;\r
-import org.simantics.browsing.ui.swt.widgets.impl.WidgetSupport;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.WriteGraph;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.management.ISessionContext;\r
-import org.simantics.operation.Layer0X;\r
-import org.simantics.selectionview.ConfigurationComposite;\r
-\r
-\r
-public class SCLEditorComposite extends ConfigurationComposite {\r
-    \r
-       private SCLEditor editor;\r
-       \r
-    public void create(Composite body, IWorkbenchSite site, ISessionContext context, final WidgetSupport support) {\r
-        \r
-       GridLayoutFactory.fillDefaults().spacing(0, 0).equalWidth(false).numColumns(2).applyTo(body);\r
-       body.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_WHITE));\r
-       \r
-       Button button = new Button(body, support, SWT.NONE);\r
-       button.setText("&Apply changes");\r
-       button.addSelectionListener(new SelectionListenerImpl<Resource>(context) {\r
-\r
-               private String content;\r
-               \r
-               @Override\r
-               public void beforeApply() {\r
-                       content = editor.getContent();\r
-                       editor.getWidget().storeSelectedRange();\r
-                       editor.getControl().setFocus();\r
-                       editor.getWidget().restoreSelectedRange();\r
-               }\r
-               \r
-                       @Override\r
-                       public void apply(WriteGraph graph, Resource group) throws DatabaseException {\r
-                           Layer0X L0X = Layer0X.getInstance(graph);\r
-                               graph.claimLiteral(group, L0X.HasExpression, content);\r
-                       }\r
-                       \r
-               });\r
-       \r
-       editor = new SCLEditor(body, support, SWT.BORDER | SWT.FLAT);\r
-       editor.setTextFactory(new StringPropertyFactory(Layer0X.URIs.HasExpression));\r
-       //editor.addModifyListener(new StringPropertyModifier(context, Layer0.URIs.HasExpression));\r
-       GridDataFactory.fillDefaults().grab(true, true).span(2, 1).applyTo(editor.getControl());\r
-        \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.diagram.profile.view;
+
+import org.eclipse.jface.layout.GridDataFactory;
+import org.eclipse.jface.layout.GridLayoutFactory;
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Display;
+import org.eclipse.ui.IWorkbenchSite;
+import org.simantics.browsing.ui.swt.widgets.Button;
+import org.simantics.browsing.ui.swt.widgets.SCLEditor;
+import org.simantics.browsing.ui.swt.widgets.StringPropertyFactory;
+import org.simantics.browsing.ui.swt.widgets.impl.SelectionListenerImpl;
+import org.simantics.browsing.ui.swt.widgets.impl.WidgetSupport;
+import org.simantics.db.Resource;
+import org.simantics.db.WriteGraph;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.management.ISessionContext;
+import org.simantics.operation.Layer0X;
+import org.simantics.selectionview.ConfigurationComposite;
+
+
+public class SCLEditorComposite extends ConfigurationComposite {
+    
+       private SCLEditor editor;
+       
+    public void create(Composite body, IWorkbenchSite site, ISessionContext context, final WidgetSupport support) {
+        
+       GridLayoutFactory.fillDefaults().spacing(0, 0).equalWidth(false).numColumns(2).applyTo(body);
+       body.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_WHITE));
+       
+       Button button = new Button(body, support, SWT.NONE);
+       button.setText("&Apply changes");
+       button.addSelectionListener(new SelectionListenerImpl<Resource>(context) {
+
+               private String content;
+               
+               @Override
+               public void beforeApply() {
+                       content = editor.getContent();
+                       editor.getWidget().storeSelectedRange();
+                       editor.getControl().setFocus();
+                       editor.getWidget().restoreSelectedRange();
+               }
+               
+                       @Override
+                       public void apply(WriteGraph graph, Resource group) throws DatabaseException {
+                           Layer0X L0X = Layer0X.getInstance(graph);
+                               graph.claimLiteral(group, L0X.HasExpression, content);
+                       }
+                       
+               });
+       
+       editor = new SCLEditor(body, support, SWT.BORDER | SWT.FLAT);
+       editor.setTextFactory(new StringPropertyFactory(Layer0X.URIs.HasExpression));
+       //editor.addModifyListener(new StringPropertyModifier(context, Layer0.URIs.HasExpression));
+       GridDataFactory.fillDefaults().grab(true, true).span(2, 1).applyTo(editor.getControl());
+        
+    }
+    
+}