lttng: fix sonar warnings about redundant modifier in interfaces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.core / src / org / eclipse / linuxtools / internal / lttng2 / core / control / model / LogLevelType.java
1 /**********************************************************************
2 * Copyright (c) 2012 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 * Bernd Hufmann - Initial API and implementation
11 *********************************************************************/
12 package org.eclipse.linuxtools.internal.lttng2.core.control.model;
13
14 /**
15 * <p>
16 * Type of log Level enumeration.
17 * </p>
18 *
19 * @author Bernd Hufmann
20 */
21 public enum LogLevelType {
22
23 // ------------------------------------------------------------------------
24 // Enum definition
25 // ------------------------------------------------------------------------
26 /** range of log levels [0,logLevel] */
27 LOGLEVEL,
28
29 /** single log level */
30 LOGLEVEL_ONLY,
31
32 /** no log level */
33 LOGLEVEL_NONE;
34 }
This page took 0.029827 seconds and 5 git commands to generate.