Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/view/CDOFeatureAnalyzer.java')
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/view/CDOFeatureAnalyzer.java45
1 files changed, 45 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/view/CDOFeatureAnalyzer.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/view/CDOFeatureAnalyzer.java
new file mode 100644
index 0000000000..dfafd13e43
--- /dev/null
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/view/CDOFeatureAnalyzer.java
@@ -0,0 +1,45 @@
+/***************************************************************************
+ * Copyright (c) 2004 - 2008 Eike Stepper, Germany.
+ * 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.view;
+
+import org.eclipse.emf.cdo.CDOObject;
+import org.eclipse.emf.cdo.common.model.CDOFeature;
+
+import org.eclipse.emf.internal.cdo.analyzer.NOOPFeatureAnalyzer;
+
+/**
+ * TODO Simon: JavaDoc
+ *
+ * @author Simon McDuff
+ * @since 2.0
+ */
+public interface CDOFeatureAnalyzer
+{
+ /**
+ * TODO Simon: JavaDoc
+ */
+ public static final CDOFeatureAnalyzer NOOP = new NOOPFeatureAnalyzer();
+
+ /**
+ * TODO Simon: JavaDoc
+ *
+ * @since 2.0
+ */
+ public void preTraverseFeature(CDOObject revision, CDOFeature feature, int index);
+
+ /**
+ * TODO Simon: JavaDoc
+ *
+ * @since 2.0
+ */
+ public void postTraverseFeature(CDOObject revision, CDOFeature feature, int index, Object value);
+}

Back to the top