Fix javadoc warning
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / timestamp / ITmfTimePreferencesConstants.java
CommitLineData
c1cd9635 1/*******************************************************************************
030f8f1f 2 * Copyright (c) 2013, 2014 Ericsson
c1cd9635
MAL
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 * Marc-Andre Laperle - Initial API and implementation
11 *******************************************************************************/
12
2bdf0193 13package org.eclipse.tracecompass.tmf.core.timestamp;
c1cd9635
MAL
14
15/**
8765b2d4 16 * @noimplement This interface is not intended to be implemented by clients.
c1cd9635
MAL
17 */
18@SuppressWarnings({ "javadoc", "nls" })
19public interface ITmfTimePreferencesConstants {
304712fe
MK
20 String TIME_FORMAT_PREF = "org.eclipse.linuxtools.tmf.core.prefs.time.format";
21 String DEFAULT_TIME_PATTERN = "HH:mm:ss.SSS SSS SSS";
22 String DATIME = TIME_FORMAT_PREF + ".datime";
23 String SUBSEC = TIME_FORMAT_PREF + ".subsec";
24 String TIME_ZONE = TIME_FORMAT_PREF + ".timezone";
25 String DATE_DELIMITER = TIME_FORMAT_PREF + ".date.delimiter";
26 String TIME_DELIMITER = TIME_FORMAT_PREF + ".time.delimiter";
27 String SSEC_DELIMITER = TIME_FORMAT_PREF + ".ssec.delimiter";
28 String DATE_YEAR_FMT = "yyyy-MM-dd HH:mm:ss";
29 String DATE_YEAR2_FMT = "yy-MM-dd HH:mm:ss";
30 String DATE_MONTH_FMT = "MM-dd HH:mm:ss";
31 String DATE_DAY_FMT = "dd HH:mm:ss";
32 String DATE_JDAY_FMT = "DDD HH:mm:ss";
33 String DATE_NO_FMT = "HH:mm:ss";
34 String TIME_HOUR_FMT = "HH:mm:ss";
35 String TIME_MINUTE_FMT = "mm:ss";
36 String TIME_SECOND_FMT = "ss";
37 String TIME_ELAPSED_FMT = "TTT";
38 String TIME_NO_FMT = "";
39 String SUBSEC_MILLI_FMT = "SSS";
40 String SUBSEC_MICRO_FMT = "SSS SSS";
41 String SUBSEC_NANO_FMT = "SSS SSS SSS";
42 String SUBSEC_NO_FMT = "";
43 String DELIMITER_NONE = "";
44 String DELIMITER_SPACE = " ";
45 String DELIMITER_PERIOD = ".";
46 String DELIMITER_COMMA = ",";
47 String DELIMITER_DASH = "-";
48 String DELIMITER_UNDERLINE = "_";
49 String DELIMITER_COLON = ":";
50 String DELIMITER_SEMICOLON = ";";
51 String DELIMITER_SLASH = "/";
52 String DELIMITER_DQUOT = "\"";
304712fe 53 String DELIMITER_QUOTE = "''";
304712fe 54 String LOCALE = TIME_FORMAT_PREF + ".locale";
c1cd9635 55}
This page took 0.115907 seconds and 5 git commands to generate.