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