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
1 /**********************************************************************
2 * Copyright (c) 2012, 2013 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.control.core.model;
13
14 /**
15 * <p>
16 * Interface for retrieval of probe event information.
17 * </p>
18 *
19 * @author Bernd Hufmann
20 */
21 public interface IProbeEventInfo extends IEventInfo {
22
23 /**
24 * @return the address of the probe. (null if not used)
25 */
26 String getAddress();
27
28 /**
29 * Sets the address of the probe.
30 * @param address - a address (null if not used)
31 */
32 void setAddress(String address);
33
34 /**
35 * @return the offset applied to the symbol (null if not used).
36 */
37 String getOffset();
38
39 /**
40 * Sets the offset applied to the symbol.
41 * @param offset - a offset ((null if not used)
42 */
43 void setOffset(String offset);
44
45 /**
46 * @return the symbol name. ((null if not used))
47 */
48 String getSymbol();
49
50 /**
51 * Sets the symbol name.
52 * @param symbol - a symbol name ((null if not used))
53 */
54 void setSymbol(String symbol);
55 }
This page took 0.032307 seconds and 5 git commands to generate.