]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.spreadsheet.graph/src/org/simantics/spreadsheet/graph/ServerCellBase.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.spreadsheet.graph / src / org / simantics / spreadsheet / graph / ServerCellBase.java
index 7dcbe101ccab92dcfc80d1f212fcf7f22d1c38f4..3131f56ecd5152b9f784fcfd1c4d870b8874540d 100644 (file)
@@ -1,41 +1,41 @@
-/*******************************************************************************\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.spreadsheet.graph;\r
-\r
-import org.simantics.db.RequestProcessor;\r
-import org.simantics.db.Resource;\r
-\r
-abstract public class ServerCellBase implements ServerCell {\r
-\r
-    protected boolean disposed = false;\r
-\r
-    protected RequestProcessor processor;\r
-    protected RequestProcessor delayed;\r
-    protected Resource resource;\r
-\r
-    @Override\r
-    public void register(RequestProcessor processor, RequestProcessor delayed, Resource cell) {\r
-        this.processor = processor;\r
-        this.delayed = delayed;\r
-        this.resource = cell;\r
-    }\r
-\r
-    @Override\r
-    public void dispose() {\r
-        disposed = true;\r
-    }\r
-\r
-    public Resource getResource() {\r
-        return resource;\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.spreadsheet.graph;
+
+import org.simantics.db.RequestProcessor;
+import org.simantics.db.Resource;
+
+abstract public class ServerCellBase implements ServerCell {
+
+    protected boolean disposed = false;
+
+    protected RequestProcessor processor;
+    protected RequestProcessor delayed;
+    protected Resource resource;
+
+    @Override
+    public void register(RequestProcessor processor, RequestProcessor delayed, Resource cell) {
+        this.processor = processor;
+        this.delayed = delayed;
+        this.resource = cell;
+    }
+
+    @Override
+    public void dispose() {
+        disposed = true;
+    }
+
+    public Resource getResource() {
+        return resource;
+    }
+
+}