Update internal packages export in LTTng 2.0 control + update java doc
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.core / src / org / eclipse / linuxtools / internal / lttng2 / core / control / model / IProbeEventInfo.java
CommitLineData
d132bcc7
BH
1/**********************************************************************
2 * Copyright (c) 2012 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 **********************************************************************/
9315aeee 12package org.eclipse.linuxtools.internal.lttng2.core.control.model;
d132bcc7
BH
13
14/**
d132bcc7
BH
15 * <p>
16 * Interface for retrieval of probe event information.
17 * </p>
dbd4432d
BH
18 *
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 */
26 public String getAddress();
27
28 /**
29 * Sets the address of the probe.
30 * @param address - a address (null if not used)
31 */
32 public void setAddress(String address);
33
34 /**
35 * @return the offset applied to the symbol (null if not used).
36 */
37 public String getOffset();
38
39 /**
40 * Sets the offset applied to the symbol.
41 * @param offset - a offset ((null if not used)
42 */
43 public void setOffset(String offset);
44
45 /**
46 * @return the symbol name. ((null if not used))
47 */
48 public String getSymbol();
49
50 /**
51 * Sets the symbol name.
52 * @param symbol - a symbol name ((null if not used))
53 */
54 public void setSymbol(String symbol);
55}
This page took 0.027916 seconds and 5 git commands to generate.