Fix some null warnings
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core.tests / stubs / org / eclipse / tracecompass / tmf / tests / stubs / trace / text / SyslogEventType.java
1 /*******************************************************************************
2 * Copyright (c) 2014, 2015 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 * Patrick Tasse - Move field declarations to trace
12 *******************************************************************************/
13
14 package org.eclipse.tracecompass.tmf.tests.stubs.trace.text;
15
16 import org.eclipse.jdt.annotation.NonNull;
17 import org.eclipse.tracecompass.tmf.core.event.TmfEventType;
18
19 /**
20 * The system log extension of the TMF event type.
21 */
22 public class SyslogEventType extends TmfEventType {
23
24 /** The event type id string. */
25 public static final @NonNull String TYPE_ID = "Syslog"; //$NON-NLS-1$
26
27 /** A default instance of this class */
28 public static final SyslogEventType INSTANCE = new SyslogEventType();
29
30 /**
31 * Default Constructor
32 */
33 public SyslogEventType() {
34 super(TYPE_ID, null);
35 }
36
37 }
This page took 0.04277 seconds and 5 git commands to generate.