blob: 73a0c02f99cf9b206f7fe425e7dba0c4dcac1888 [file] [log] [blame]
/**********************************************************************
* 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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* 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 filter provider.
*
* Sequence Diagram loaders which implement this interface provide the action for filtering the sequence diagram.<br>
*
* Action provider are associated to a Sequence Diagram view by calling <code>SDView.setExtendedFilterProvider</code><br>
*
* @version 1.0
* @author sveyrier
*
*/
public interface IExtendedFilterProvider {
/**
* Returns a filter action implementation.
*
* @return a filter action implementation
*/
Action getFilterAction();
}