Merge branch 'master' into lttng-kepler
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / viewers / events / ITmfEventsFilterProvider.java
1 /*******************************************************************************
2 * Copyright (c) 2010 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Patrick Tasse - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.ui.viewers.events;
14
15 /**
16 * A filter/search event provider
17 *
18 * @version 1.0
19 * @author Patrick Tasse
20 */
21 public interface ITmfEventsFilterProvider {
22
23 /**
24 * Add a listener to this provider.
25 *
26 * @param listener
27 * The listener to add
28 */
29 public void addEventsFilterListener(ITmfEventsFilterListener listener);
30
31 /**
32 * Remove a listener from this provider.
33 *
34 * @param listener
35 * The listener to remove
36 */
37 public void removeEventsFilterListener (ITmfEventsFilterListener listener);
38
39 }
This page took 0.034027 seconds and 5 git commands to generate.