Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/views/uml2sd/handlers/provider/IExtendedFindProvider.java')
-rwxr-xr-xtmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/views/uml2sd/handlers/provider/IExtendedFindProvider.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/views/uml2sd/handlers/provider/IExtendedFindProvider.java b/tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/views/uml2sd/handlers/provider/IExtendedFindProvider.java
new file mode 100755
index 0000000000..c660ca1e13
--- /dev/null
+++ b/tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/views/uml2sd/handlers/provider/IExtendedFindProvider.java
@@ -0,0 +1,38 @@
+/**********************************************************************
+ * Copyright (c) 2005, 2014 IBM Corporation, Ericsson
+ * 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 - Initial API and implementation
+ * Bernd Hufmann - Updated for TMF
+ **********************************************************************/
+
+package org.eclipse.tracecompass.tmf.ui.views.uml2sd.handlers.provider;
+
+import org.eclipse.jface.action.Action;
+
+/**
+ * Interface for providing an extended find provider.
+ *
+ * Sequence Diagram loaders which implement this interface provide an action for finding in the sequence diagram.
+ *
+ * Action provider are associated to a Sequence Diagram view by calling <code>SDView.setExtendedFindProvider()</code>.<br>
+ *
+ * Note that either provider implementing ISDFindProvider or IExtendedFindProvider can be active in the SDView.<br>
+ *
+ * @version 1.0
+ * @author sveyrier
+ *
+ */
+public interface IExtendedFindProvider {
+
+ /**
+ * Returns an extended find action.
+ *
+ * @return an extended find action
+ */
+ Action getFindAction();
+}

Back to the top