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