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