Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/CDOAdapter.java')
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/CDOAdapter.java68
1 files changed, 34 insertions, 34 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/CDOAdapter.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/CDOAdapter.java
index 2c358f485e..f859d6087f 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/CDOAdapter.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/CDOAdapter.java
@@ -1,34 +1,34 @@
-/*
- * 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:
- * Simon McDuff - initial API and implementation
- * Eike Stepper - maintenance
- */
-package org.eclipse.emf.cdo;
-
-import org.eclipse.emf.cdo.view.CDOAdapterPolicy;
-import org.eclipse.emf.cdo.view.CDOView;
-import org.eclipse.emf.cdo.view.CDOView.Options;
-
-import org.eclipse.emf.common.notify.Adapter;
-
-/**
- * A marker interface for {@link Adapter adpters} to indicate that change subscriptions should be registered with the
- * repository if they are attached to {@link CDOObject objects}.
- * <p>
- * This special marker interface is intended to be used with {@link CDOAdapterPolicy#CDO}. Note that you can also define
- * your own {@link CDOAdapterPolicy adapter policy} and {@link Options#addChangeSubscriptionPolicy(CDOAdapterPolicy)
- * register} it with the {@link CDOView view} to make your own adapters trigger change subscription.
- *
- * @author Simon McDuff
- * @since 2.0
- * @apiviz.uses {@link CDONotification} - - receives
- */
-public interface CDOAdapter extends Adapter
-{
-}
+/*
+ * 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:
+ * Simon McDuff - initial API and implementation
+ * Eike Stepper - maintenance
+ */
+package org.eclipse.emf.cdo;
+
+import org.eclipse.emf.cdo.view.CDOAdapterPolicy;
+import org.eclipse.emf.cdo.view.CDOView;
+import org.eclipse.emf.cdo.view.CDOView.Options;
+
+import org.eclipse.emf.common.notify.Adapter;
+
+/**
+ * A marker interface for {@link Adapter adpters} to indicate that change subscriptions should be registered with the
+ * repository if they are attached to {@link CDOObject objects}.
+ * <p>
+ * This special marker interface is intended to be used with {@link CDOAdapterPolicy#CDO}. Note that you can also define
+ * your own {@link CDOAdapterPolicy adapter policy} and {@link Options#addChangeSubscriptionPolicy(CDOAdapterPolicy)
+ * register} it with the {@link CDOView view} to make your own adapters trigger change subscription.
+ *
+ * @author Simon McDuff
+ * @since 2.0
+ * @apiviz.uses {@link CDONotification} - - receives
+ */
+public interface CDOAdapter extends Adapter
+{
+}

Back to the top