905cfa8f6b85f0d6f1901941b1dc7edb216056ab
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.control.core / src / org / eclipse / linuxtools / internal / lttng2 / control / core / relayd / lttngviewerCommands / IBaseCommand.java
1 /**********************************************************************
2 * Copyright (c) 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 * Matthew Khouzam - Initial implementation and API
11 * Marc-Andre Laperle - Initial implementation and API
12 **********************************************************************/
13
14 package org.eclipse.linuxtools.internal.lttng2.control.core.relayd.lttngviewerCommands;
15
16 /**
17 * Instruction to send to relayd
18 *
19 * @author Matthew Khouzam
20 * @since 3.0
21 */
22 public interface IBaseCommand {
23
24 /**
25 * gets the numerical value of the command
26 *
27 * @return the numerical value of the command
28 */
29 int getCommand();
30 }
This page took 0.03128 seconds and 4 git commands to generate.