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