lttng: Add a diagram showing the dependencies between plugins
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.core / src / org / eclipse / linuxtools / internal / lttng2 / core / control / model / TargetNodeState.java
CommitLineData
eb1bab5b
BH
1/**********************************************************************
2 * Copyright (c) 2012 Ericsson
b0318660 3 *
eb1bab5b
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
b0318660
AM
8 *
9 * Contributors:
eb1bab5b
BH
10 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
9315aeee 12package org.eclipse.linuxtools.internal.lttng2.core.control.model;
eb1bab5b
BH
13
14/**
eb1bab5b 15 * <p>
b0318660 16 * Enumeration for the node connection state.
eb1bab5b 17 * </p>
b0318660 18 *
dbd4432d 19 * @author Bernd Hufmann
eb1bab5b
BH
20 */
21public enum TargetNodeState {
b0318660
AM
22 /** State when disconnected */
23 DISCONNECTED,
24 /** State while disconnecting */
25 DISCONNECTING,
26 /** State when connected */
27 CONNECTED,
28 /** State while connecting */
29 CONNECTING;
eb1bab5b 30}
This page took 0.040548 seconds and 5 git commands to generate.