rcp: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.ctf.core / src / org / eclipse / tracecompass / 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 *******************************************************************************/
f357bcd4 11package org.eclipse.tracecompass.ctf.core.trace;
6a5251eb
MK
12
13/**
14 * A response to a request
15 *
16 * @author Matthew Khouzam
6a5251eb
MK
17 */
18public enum CTFResponse {
19 /**
20 * The operation was successful
21 */
22 OK,
23 /**
24 * The operation cannot be yet completed
25 */
26 WAIT,
27 /**
28 * The operation was finished
29 */
30 FINISH,
31 /**
32 * The operation failed
33 */
34 ERROR
35}
This page took 0.093265 seconds and 5 git commands to generate.