tmf: Make CtfTmfTestTrace null-friendly
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.control.core / src / org / eclipse / linuxtools / internal / lttng2 / control / core / model / LogLevelType.java
CommitLineData
ccc66d01
BH
1/**********************************************************************
2 * Copyright (c) 2012 Ericsson
b0318660 3 *
ccc66d01
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:
ccc66d01
BH
10 * Bernd Hufmann - Initial API and implementation
11 *********************************************************************/
8e8c0226 12package org.eclipse.linuxtools.internal.lttng2.control.core.model;
ccc66d01
BH
13
14/**
ccc66d01
BH
15 * <p>
16 * Type of log Level enumeration.
17 * </p>
b0318660 18 *
dbd4432d 19 * @author Bernd Hufmann
ccc66d01
BH
20 */
21public enum LogLevelType {
b0318660 22
ccc66d01
BH
23 // ------------------------------------------------------------------------
24 // Enum definition
25 // ------------------------------------------------------------------------
b0318660
AM
26 /** range of log levels [0,logLevel] */
27 LOGLEVEL,
ccc66d01 28
b0318660
AM
29 /** single log level */
30 LOGLEVEL_ONLY,
ccc66d01 31
b0318660
AM
32 /** no log level */
33 LOGLEVEL_NONE;
34}
This page took 0.049212 seconds and 5 git commands to generate.