lttng: Rename lttng2 feature/plugins to lttng2.control
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.control.core / src / org / eclipse / linuxtools / internal / lttng2 / control / core / model / IProbeEventInfo.java
CommitLineData
d132bcc7 1/**********************************************************************
a6e6f7b4
BH
2 * Copyright (c) 2012, 2013 Ericsson
3 *
d132bcc7
BH
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
a6e6f7b4
BH
8 *
9 * Contributors:
d132bcc7
BH
10 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
8e8c0226 12package org.eclipse.linuxtools.internal.lttng2.control.core.model;
d132bcc7
BH
13
14/**
d132bcc7
BH
15 * <p>
16 * Interface for retrieval of probe event information.
17 * </p>
a6e6f7b4 18 *
dbd4432d 19 * @author Bernd Hufmann
d132bcc7
BH
20 */
21public interface IProbeEventInfo extends IEventInfo {
22
23 /**
24 * @return the address of the probe. (null if not used)
25 */
a6e6f7b4
BH
26 String getAddress();
27
d132bcc7
BH
28 /**
29 * Sets the address of the probe.
30 * @param address - a address (null if not used)
31 */
a6e6f7b4
BH
32 void setAddress(String address);
33
d132bcc7
BH
34 /**
35 * @return the offset applied to the symbol (null if not used).
36 */
a6e6f7b4
BH
37 String getOffset();
38
d132bcc7
BH
39 /**
40 * Sets the offset applied to the symbol.
41 * @param offset - a offset ((null if not used)
42 */
a6e6f7b4 43 void setOffset(String offset);
d132bcc7
BH
44
45 /**
46 * @return the symbol name. ((null if not used))
47 */
a6e6f7b4
BH
48 String getSymbol();
49
d132bcc7
BH
50 /**
51 * Sets the symbol name.
52 * @param symbol - a symbol name ((null if not used))
53 */
a6e6f7b4 54 void setSymbol(String symbol);
d132bcc7 55}
This page took 0.042101 seconds and 5 git commands to generate.