tmf: Rename packages to org.eclipse.tracecompass.*
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / views / uml2sd / handlers / provider / IExtendedFilterProvider.java
1 /**********************************************************************
2 * Copyright (c) 2005, 2013 IBM Corporation, Ericsson
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
7 *
8 * Contributors:
9 * IBM - Initial API and implementation
10 * Bernd Hufmann - Updated for TMF
11 **********************************************************************/
12
13 package org.eclipse.tracecompass.tmf.ui.views.uml2sd.handlers.provider;
14
15 import org.eclipse.jface.action.Action;
16
17 /**
18 * Interface for providing an extended filter provider.
19 *
20 * Sequence Diagram loaders which implement this interface provide the action for filtering the sequence diagram.<br>
21 *
22 * Action provider are associated to a Sequence Diagram view by calling <code>SDView.setExtendedFilterProvider</code><br>
23 *
24 * @version 1.0
25 * @author sveyrier
26 *
27 */
28 public interface IExtendedFilterProvider {
29
30 /**
31 * Returns a filter action implementation.
32 *
33 * @return a filter action implementation
34 */
35 Action getFilterAction();
36
37 }
This page took 0.032585 seconds and 5 git commands to generate.