blob: 98868f7ce5d3602588f1af8d302e9e653d3683ce [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.util;
18
19import android.util.Log;
20
21import java.io.BufferedReader;
22import java.io.FileReader;
23import java.io.IOException;
24import java.util.HashMap;
25import java.util.regex.Matcher;
26import java.util.regex.Pattern;
27
Dan Egnor62136d32010-01-05 19:09:08 -080028/**
29 * to-bo-deprecated: This class is no longer functional.
30 * Use {@link android.util.EventLog} instead.
31 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032public class EventLogTags {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033 public static class Description {
34 public final int mTag;
35 public final String mName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036
37 Description(int tag, String name) {
38 mTag = tag;
39 mName = name;
40 }
41 }
42
Dan Egnor62136d32010-01-05 19:09:08 -080043 public EventLogTags() throws IOException {}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044
Dan Egnor62136d32010-01-05 19:09:08 -080045 public EventLogTags(BufferedReader input) throws IOException {}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046
Dan Egnor62136d32010-01-05 19:09:08 -080047 public Description get(String name) { return null; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048
Dan Egnor62136d32010-01-05 19:09:08 -080049 public Description get(int tag) { return null; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050}