Improve package tangle index for LTTng 2.0 control design
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.core / src / org / eclipse / linuxtools / internal / lttng2 / core / control / model / IProbeEventInfo.java
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 **********************************************************************/
12 package org.eclipse.linuxtools.internal.lttng2.core.control.model;
13
14 /**
15 * <b><u>IProbeEventInfo</u></b>
16 * <p>
17 * Interface for retrieval of probe event information.
18 * </p>
19 */
20 public interface IProbeEventInfo extends IEventInfo {
21
22 /**
23 * @return the address of the probe. (null if not used)
24 */
25 public String getAddress();
26
27 /**
28 * Sets the address of the probe.
29 * @param address - a address (null if not used)
30 */
31 public void setAddress(String address);
32
33 /**
34 * @return the offset applied to the symbol (null if not used).
35 */
36 public String getOffset();
37
38 /**
39 * Sets the offset applied to the symbol.
40 * @param offset - a offset ((null if not used)
41 */
42 public void setOffset(String offset);
43
44 /**
45 * @return the symbol name. ((null if not used))
46 */
47 public String getSymbol();
48
49 /**
50 * Sets the symbol name.
51 * @param symbol - a symbol name ((null if not used))
52 */
53 public void setSymbol(String symbol);
54 }
This page took 0.032424 seconds and 6 git commands to generate.