Merge master in TmfTraceModel
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / filter / ITmfFilter.java
CommitLineData
46ab8ce3
FC
1/*******************************************************************************\r
2 * Copyright (c) 2010 Ericsson\r
3 * \r
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
8 * \r
9 * Contributors:\r
10 * Patrick Tasse - Initial API and implementation\r
11 *******************************************************************************/\r
12\r
6c13869b 13package org.eclipse.linuxtools.tmf.core.filter;\r
46ab8ce3 14\r
a96d4804 15import org.eclipse.linuxtools.tmf.core.event.ITmfEvent;\r
46ab8ce3
FC
16\r
17\r
18public interface ITmfFilter {\r
19\r
20 /**\r
21 * Verify the filter conditions on an event\r
22 * \r
23 * @param event The event to verify.\r
24 * @return True if the event matches the filter conditions.\r
25 */\r
a96d4804 26 public boolean matches(ITmfEvent event);\r
46ab8ce3
FC
27 \r
28}\r
This page took 0.028617 seconds and 5 git commands to generate.