b39bcfa78356427440abf9a255e7fa58dea5b1f6
[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.tracecompass.tmf.core.event.TmfEventType;
17
18 /**
19 * The system log extension of the TMF event type.
20 */
21 public class SyslogEventType extends TmfEventType {
22
23 /** The event type id string. */
24 public static final String TYPE_ID = "Syslog"; //$NON-NLS-1$
25
26 /** A default instance of this class */
27 public static final SyslogEventType INSTANCE = new SyslogEventType();
28
29 /**
30 * Default Constructor
31 */
32 public SyslogEventType() {
33 super(TYPE_ID, null);
34 }
35
36 }
This page took 0.043013 seconds and 4 git commands to generate.