tmf: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / linuxtools / tmf / core / event / matching / ITmfEventMatching.java
1 /*******************************************************************************
2 * Copyright (c) 2013 École Polytechnique de Montréal
3 *
4 * All rights reserved. This program and the accompanying materials are made
5 * 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 * Geneviève Bastien - Initial implementation and API
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.core.event.matching;
14
15
16 /**
17 * Interface for matching trace events
18 *
19 * @author Geneviève Bastien
20 * @since 3.0
21 */
22 public interface ITmfEventMatching {
23
24 /**
25 * Method that start the process of matching events
26 *
27 * @return Whether the match was completed correctly or not
28 */
29 boolean matchEvents();
30
31 }
This page took 0.037384 seconds and 5 git commands to generate.