btf: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core / src / org / eclipse / linuxtools / ctf / core / trace / CTFResponse.java
CommitLineData
6a5251eb
MK
1/*******************************************************************************
2 * Copyright (c) 2014 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are made
5 * 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: Matthew Khouzam - Initial API and implementation
10 *******************************************************************************/
11package org.eclipse.linuxtools.ctf.core.trace;
12
13/**
14 * A response to a request
15 *
16 * @author Matthew Khouzam
17 * @since 3.0
18 *
19 */
20public enum CTFResponse {
21 /**
22 * The operation was successful
23 */
24 OK,
25 /**
26 * The operation cannot be yet completed
27 */
28 WAIT,
29 /**
30 * The operation was finished
31 */
32 FINISH,
33 /**
34 * The operation failed
35 */
36 ERROR
37}
This page took 0.0321399999999999 seconds and 5 git commands to generate.