]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.diagram/src/org/simantics/diagram/symbollibrary/SymbolManagerFeature.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.diagram / src / org / simantics / diagram / symbollibrary / SymbolManagerFeature.java
index 85ed7e6c6ed82ec2e96877b00ef4cb7e83181f36..f699e2950a4ee802bdbb11f750656c4701aa2c76 100644 (file)
@@ -1,85 +1,85 @@
-/*******************************************************************************\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.symbollibrary;\r
-\r
-import java.util.Collection;\r
-import java.util.Collections;\r
-import java.util.HashSet;\r
-\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.diagram.synchronization.graph.BasicResources;\r
-import org.simantics.project.IProject;\r
-import org.simantics.project.exception.ProjectException;\r
-import org.simantics.project.features.AbstractProjectFeature;\r
-import org.simantics.utils.datastructures.disposable.AbstractDisposable;\r
-import org.simantics.utils.datastructures.disposable.IDisposable;\r
-\r
-class SymbolManager extends AbstractDisposable implements ISymbolManager, IDisposable {\r
-\r
-    IProject project;\r
-\r
-    public SymbolManager(IProject project) {\r
-        this.project = project;\r
-        project.setHint(ISymbolManager.KEY_SYMBOL_GROUPS, Collections.emptySet());\r
-    }\r
-\r
-    @Override\r
-    protected void doDispose() {\r
-        project.setHint(KEY_SYMBOL_GROUPS, Collections.emptySet());\r
-    }\r
-\r
-    @Override\r
-    public void addEntryPoints(Collection<ISymbolGroup> eps) {\r
-        Collection<ISymbolGroup> groups = project.getHint(KEY_SYMBOL_GROUPS);\r
-        Collection<ISymbolGroup> newGroups = new HashSet<ISymbolGroup>(groups);\r
-        newGroups.addAll(eps);\r
-        project.setHint(KEY_SYMBOL_GROUPS, Collections.unmodifiableCollection(newGroups));\r
-    }\r
-\r
-    @Override\r
-    public void removeEntryPoints(Collection<ISymbolGroup> eps) {\r
-        Collection<ISymbolGroup> groups = project.getHint(KEY_SYMBOL_GROUPS);\r
-        Collection<ISymbolGroup> newGroups = new HashSet<ISymbolGroup>(groups);\r
-        newGroups.removeAll(eps);\r
-        project.setHint(KEY_SYMBOL_GROUPS, Collections.unmodifiableCollection(newGroups));\r
-    }\r
-\r
-}\r
-\r
-public class SymbolManagerFeature extends AbstractProjectFeature {\r
-\r
-    SymbolManager sm;\r
-\r
-    @Override\r
-    public void configure() throws ProjectException {\r
-        // IMPORTANT: This is vital for making sure that certain basic\r
-        // resource classes are loaded into the database session as its\r
-        // services (see org.simantics.db.ServiceLocator).\r
-        try {\r
-            BasicResources.getInstance(getSession());\r
-        } catch (DatabaseException e) {\r
-            throw new ProjectException(e);\r
-        }\r
-\r
-        sm = new SymbolManager(getProject());\r
-        getProjectElement().setHint(ISymbolManager.KEY_SYMBOL_MANAGER, sm);\r
-    }\r
-\r
-    @Override\r
-    public void deconfigure() throws ProjectException {\r
-        if (getProjectElement().getHint(ISymbolManager.KEY_SYMBOL_MANAGER) == sm)\r
-            getProjectElement().removeHint(ISymbolManager.KEY_SYMBOL_MANAGER);\r
-        sm.dispose();\r
-        sm = null;\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.symbollibrary;
+
+import java.util.Collection;
+import java.util.Collections;
+import java.util.HashSet;
+
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.diagram.synchronization.graph.BasicResources;
+import org.simantics.project.IProject;
+import org.simantics.project.exception.ProjectException;
+import org.simantics.project.features.AbstractProjectFeature;
+import org.simantics.utils.datastructures.disposable.AbstractDisposable;
+import org.simantics.utils.datastructures.disposable.IDisposable;
+
+class SymbolManager extends AbstractDisposable implements ISymbolManager, IDisposable {
+
+    IProject project;
+
+    public SymbolManager(IProject project) {
+        this.project = project;
+        project.setHint(ISymbolManager.KEY_SYMBOL_GROUPS, Collections.emptySet());
+    }
+
+    @Override
+    protected void doDispose() {
+        project.setHint(KEY_SYMBOL_GROUPS, Collections.emptySet());
+    }
+
+    @Override
+    public void addEntryPoints(Collection<ISymbolGroup> eps) {
+        Collection<ISymbolGroup> groups = project.getHint(KEY_SYMBOL_GROUPS);
+        Collection<ISymbolGroup> newGroups = new HashSet<ISymbolGroup>(groups);
+        newGroups.addAll(eps);
+        project.setHint(KEY_SYMBOL_GROUPS, Collections.unmodifiableCollection(newGroups));
+    }
+
+    @Override
+    public void removeEntryPoints(Collection<ISymbolGroup> eps) {
+        Collection<ISymbolGroup> groups = project.getHint(KEY_SYMBOL_GROUPS);
+        Collection<ISymbolGroup> newGroups = new HashSet<ISymbolGroup>(groups);
+        newGroups.removeAll(eps);
+        project.setHint(KEY_SYMBOL_GROUPS, Collections.unmodifiableCollection(newGroups));
+    }
+
+}
+
+public class SymbolManagerFeature extends AbstractProjectFeature {
+
+    SymbolManager sm;
+
+    @Override
+    public void configure() throws ProjectException {
+        // IMPORTANT: This is vital for making sure that certain basic
+        // resource classes are loaded into the database session as its
+        // services (see org.simantics.db.ServiceLocator).
+        try {
+            BasicResources.getInstance(getSession());
+        } catch (DatabaseException e) {
+            throw new ProjectException(e);
+        }
+
+        sm = new SymbolManager(getProject());
+        getProjectElement().setHint(ISymbolManager.KEY_SYMBOL_MANAGER, sm);
+    }
+
+    @Override
+    public void deconfigure() throws ProjectException {
+        if (getProjectElement().getHint(ISymbolManager.KEY_SYMBOL_MANAGER) == sm)
+            getProjectElement().removeHint(ISymbolManager.KEY_SYMBOL_MANAGER);
+        sm.dispose();
+        sm = null;
+    }
+
 }
\ No newline at end of file