tmf: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / event / matching / ITmfEventMatching.java
1 /*******************************************************************************
2 * Copyright (c) 2013, 2014 É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.tracecompass.tmf.core.event.matching;
14
15
16 /**
17 * Interface for matching trace events
18 *
19 * @author Geneviève Bastien
20 */
21 public interface ITmfEventMatching {
22
23 /**
24 * Method that start the process of matching events
25 *
26 * @return Whether the match was completed correctly or not
27 */
28 boolean matchEvents();
29
30 }
This page took 0.03172 seconds and 5 git commands to generate.