Java Doc and API clean up of TMF UML Sequence diagram framework
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / provider / IExtendedFindProvider.java
1 /**********************************************************************
2 * Copyright (c) 2005, 2006 IBM Corporation and others.
3 * Copyright (c) 2011, 2012 Ericsson.
4 *
5 * All rights reserved. This program and the accompanying materials
6 * are made available under the terms of the Eclipse Public License v1.0
7 * which accompanies this distribution, and is available at
8 * http://www.eclipse.org/legal/epl-v10.html
9 *
10 * Contributors:
11 * IBM - Initial API and implementation
12 * Bernd Hufmann - Updated for TMF
13 **********************************************************************/
14 package org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.provider;
15
16 import org.eclipse.jface.action.Action;
17
18 /**
19 * Interface for providing an extended find provider.
20 *
21 * Sequence Diagram loaders which implement this interface provide an action for finding in the sequence diagram.
22 *
23 * Action provider are associated to a Sequence Diagram view by calling <code>SDView.setExtendedFindProvider()</code>.<br>
24 *
25 * Note that either provider implementing ISDFindProvider or IExtendedFindProvider can be active in the SDView.<br>
26 *
27 * @version 1.0
28 * @author sveyrier
29 *
30 */
31 public interface IExtendedFindProvider {
32
33 /**
34 * Returns an extended find action.
35 *
36 * @return an extended find action
37 */
38 public Action getFindAction();
39 }
This page took 0.030315 seconds and 5 git commands to generate.