LTTng: Show the buffer type in the domain property view
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.core / src / org / eclipse / linuxtools / internal / lttng2 / core / control / model / impl / BufferTypeConstants.java
1 /**********************************************************************
2 * Copyright (c) 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 * Simon Delisle - Initial API and implementation
11 **********************************************************************/
12
13 package org.eclipse.linuxtools.internal.lttng2.core.control.model.impl;
14
15 /**
16 * Constants for buffer type.
17 *
18 * @author Simon Delisle
19 */
20 public interface BufferTypeConstants {
21 // ------------------------------------------------------------------------
22 // Buffer type
23 // ------------------------------------------------------------------------
24 /**
25 * Buffer type : per UID
26 */
27 static final String BUFFER_PER_UID = "per UID"; //$NON-NLS-1$
28 /**
29 * Buffer type : per PID
30 */
31 static final String BUFFER_PER_PID = "per PID"; //$NON-NLS-1$
32 /**
33 * Buffer type : shared
34 */
35 static final String BUFFER_SHARED = "shared"; //$NON-NLS-1$
36 /**
37 * If the LTTng version doesn't show the buffer type
38 */
39 static final String BUFFER_TYPE_UNKNOWN = "information not unavailable"; //$NON-NLS-1$
40
41 }
This page took 0.029531 seconds and 5 git commands to generate.