2010-07-12 Francois Chouinard <fchouinar@gmail.com> Contributions for Bug319429...
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / parsers / custom / CustomTxtTraceContext.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.parsers.custom;
14
15 import java.io.RandomAccessFile;
16 import java.util.regex.Matcher;
17
18 import org.eclipse.linuxtools.tmf.trace.ITmfLocation;
19 import org.eclipse.linuxtools.tmf.trace.TmfContext;
20 import org.eclipse.linuxtools.tmf.ui.parsers.custom.CustomTxtTraceDefinition.InputLine;
21
22 public class CustomTxtTraceContext extends TmfContext {
23 public RandomAccessFile raFile;
24 public Matcher firstLineMatcher;
25 public long nextLineLocation;
26 public InputLine inputLine;
27
28 public CustomTxtTraceContext(ITmfLocation<?> location, long rank) {
29 super(location, rank);
30 }
31 }
This page took 0.034241 seconds and 5 git commands to generate.