Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.workspace/src/org/eclipse/emf/cdo/spi/workspace/InternalCDOWorkspaceBase.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.workspace/src/org/eclipse/emf/cdo/spi/workspace/InternalCDOWorkspaceBase.java100
1 files changed, 50 insertions, 50 deletions
diff --git a/plugins/org.eclipse.emf.cdo.workspace/src/org/eclipse/emf/cdo/spi/workspace/InternalCDOWorkspaceBase.java b/plugins/org.eclipse.emf.cdo.workspace/src/org/eclipse/emf/cdo/spi/workspace/InternalCDOWorkspaceBase.java
index dc22cb23a9..9313697aa8 100644
--- a/plugins/org.eclipse.emf.cdo.workspace/src/org/eclipse/emf/cdo/spi/workspace/InternalCDOWorkspaceBase.java
+++ b/plugins/org.eclipse.emf.cdo.workspace/src/org/eclipse/emf/cdo/spi/workspace/InternalCDOWorkspaceBase.java
@@ -1,50 +1,50 @@
-/*
- * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
- * 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:
- * Eike Stepper - initial API and implementation
- */
-package org.eclipse.emf.cdo.spi.workspace;
-
-import org.eclipse.emf.cdo.common.id.CDOID;
-import org.eclipse.emf.cdo.spi.common.revision.InternalCDORevision;
-import org.eclipse.emf.cdo.transaction.CDOTransaction;
-import org.eclipse.emf.cdo.workspace.CDOWorkspaceBase2;
-
-/**
- * @author Eike Stepper
- * @noextend This interface is not intended to be extended by clients.
- * @noimplement This interface is not intended to be implemented by clients.
- */
-public interface InternalCDOWorkspaceBase extends CDOWorkspaceBase2
-{
- public static final String PRODUCT_GROUP = "org.eclipse.emf.cdo.workspace.bases";
-
- public InternalCDOWorkspace getWorkspace();
-
- public void init(InternalCDOWorkspace workspace);
-
- /**
- * @since 4.1
- */
- public void registerChangedOrDetachedObject(InternalCDORevision revision);
-
- /**
- * @since 4.1
- */
- public void registerAddedObject(CDOID id);
-
- /**
- * @since 4.1
- */
- public void deregisterObject(CDOID id);
-
- @Deprecated
- public void updateAfterCommit(CDOTransaction transaction);
-
- public void clear();
-}
+/*
+ * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
+ * 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:
+ * Eike Stepper - initial API and implementation
+ */
+package org.eclipse.emf.cdo.spi.workspace;
+
+import org.eclipse.emf.cdo.common.id.CDOID;
+import org.eclipse.emf.cdo.spi.common.revision.InternalCDORevision;
+import org.eclipse.emf.cdo.transaction.CDOTransaction;
+import org.eclipse.emf.cdo.workspace.CDOWorkspaceBase2;
+
+/**
+ * @author Eike Stepper
+ * @noextend This interface is not intended to be extended by clients.
+ * @noimplement This interface is not intended to be implemented by clients.
+ */
+public interface InternalCDOWorkspaceBase extends CDOWorkspaceBase2
+{
+ public static final String PRODUCT_GROUP = "org.eclipse.emf.cdo.workspace.bases";
+
+ public InternalCDOWorkspace getWorkspace();
+
+ public void init(InternalCDOWorkspace workspace);
+
+ /**
+ * @since 4.1
+ */
+ public void registerChangedOrDetachedObject(InternalCDORevision revision);
+
+ /**
+ * @since 4.1
+ */
+ public void registerAddedObject(CDOID id);
+
+ /**
+ * @since 4.1
+ */
+ public void deregisterObject(CDOID id);
+
+ @Deprecated
+ public void updateAfterCommit(CDOTransaction transaction);
+
+ public void clear();
+}

Back to the top