1/* GENERATED SOURCE. DO NOT MODIFY. */
2// © 2016 and later: Unicode, Inc. and others.
3// License & terms of use: http://www.unicode.org/copyright.html#License
4/**
5 *******************************************************************************
6 * Copyright (C) 2000-2004, International Business Machines Corporation and    *
7 * others. All Rights Reserved.                                                *
8 *******************************************************************************
9 */
10package android.icu.dev.test;
11
12public interface TestLog {
13
14//    /**
15//     * Adds given string to the log if we are in verbose mode.
16//     */
17//    void log(String message);
18//
19//    void logln(String message);
20//
21//    /**
22//     * Report an error
23//     */
24//    void err(String message);
25//
26//    void errln(String message);
27//
28//    /**
29//     * Warn about missing tests or data.
30//     */
31//    void warn(String message);
32//
33//    void warnln(String message);
34
35
36    public static final int LOG = 0;
37    public static final int WARN = 1;
38    public static final int ERR = 2;
39
40    //public static void msg(String message, int level, boolean incCount, boolean newln);
41}
42