Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcbrealey2005-04-17 13:21:21 +0000
committercbrealey2005-04-17 13:21:21 +0000
commit5c3eff0132e3ba82b6ca9ce9063b9dc58ac81278 (patch)
tree49e40bffc223bef8634963465ecb3458bee83896 /bundles/org.eclipse.wst.command.env.core/src/org/eclipse/wst/command/internal/env/core/fragment/FragmentListener.java
parentbfa6d26bd32ddded8ca5e195da389935af6407ab (diff)
downloadwebtools.webservices-5c3eff0132e3ba82b6ca9ce9063b9dc58ac81278.tar.gz
webtools.webservices-5c3eff0132e3ba82b6ca9ce9063b9dc58ac81278.tar.xz
webtools.webservices-5c3eff0132e3ba82b6ca9ce9063b9dc58ac81278.zip
[91483] Refactor package names in org.eclipse.wst.command.env.core
Diffstat (limited to 'bundles/org.eclipse.wst.command.env.core/src/org/eclipse/wst/command/internal/env/core/fragment/FragmentListener.java')
-rw-r--r--bundles/org.eclipse.wst.command.env.core/src/org/eclipse/wst/command/internal/env/core/fragment/FragmentListener.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/bundles/org.eclipse.wst.command.env.core/src/org/eclipse/wst/command/internal/env/core/fragment/FragmentListener.java b/bundles/org.eclipse.wst.command.env.core/src/org/eclipse/wst/command/internal/env/core/fragment/FragmentListener.java
new file mode 100644
index 000000000..01cd7a163
--- /dev/null
+++ b/bundles/org.eclipse.wst.command.env.core/src/org/eclipse/wst/command/internal/env/core/fragment/FragmentListener.java
@@ -0,0 +1,25 @@
+/*******************************************************************************
+ * Copyright (c) 2004 IBM Corporation 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:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.wst.command.internal.env.core.fragment;
+
+/**
+ * This interface should be implement for code that needs to listen to fragments
+ * that are being traverse by the CommandFragmentEngine.
+ *
+ */
+public interface FragmentListener
+{
+ /*
+ * Notifies this listener that a commandFragment is being visited during
+ * a traversal.
+ */
+ public boolean notify( CommandFragment commandFragment );
+}

Back to the top