gdbtrace: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.control.core / src / org / eclipse / linuxtools / internal / lttng2 / control / core / model / IFieldInfo.java
CommitLineData
d4514365 1/**********************************************************************
94cce698 2 * Copyright (c) 2012, 2013 Ericsson
d4514365
BH
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 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
8e8c0226 12package org.eclipse.linuxtools.internal.lttng2.control.core.model;
d4514365
BH
13
14/**
15 * <p>
16 * Interface for retrieval of event field information.
17 * </p>
18 *
19 * @author Bernd Hufmann
20 */
21public interface IFieldInfo extends ITraceInfo {
22
23 /**
24 * @return the event field type
25 */
a6e6f7b4 26 String getFieldType();
d4514365
BH
27
28 /**
29 * Sets field type string
30 *
31 * @param fieldType - sting of event field type
32 */
a6e6f7b4 33 void setFieldType(String fieldType);
d4514365 34}
This page took 0.07225 seconds and 5 git commands to generate.