Fix for Bug338151
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / parsers / custom / CustomTxtTraceContext.java
CommitLineData
c3c5c786
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
13package org.eclipse.linuxtools.tmf.ui.parsers.custom;\r
14\r
c3c5c786
FC
15import java.util.regex.Matcher;\r
16\r
d7fcacc9 17import org.eclipse.linuxtools.tmf.io.BufferedRandomAccessFile;\r
c3c5c786
FC
18import org.eclipse.linuxtools.tmf.trace.ITmfLocation;\r
19import org.eclipse.linuxtools.tmf.trace.TmfContext;\r
20import org.eclipse.linuxtools.tmf.ui.parsers.custom.CustomTxtTraceDefinition.InputLine;\r
21\r
22public class CustomTxtTraceContext extends TmfContext {\r
d7fcacc9 23 public BufferedRandomAccessFile raFile;\r
c3c5c786 24 public Matcher firstLineMatcher;\r
d7fcacc9 25 public String firstLine;\r
c3c5c786
FC
26 public long nextLineLocation;\r
27 public InputLine inputLine;\r
28\r
29 public CustomTxtTraceContext(ITmfLocation<?> location, long rank) {\r
30 super(location, rank);\r
31 }\r
32}
This page took 0.025476 seconds and 5 git commands to generate.