blob: f4ce4fd00df44f252e97894a5bf4e0574b769e07 [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
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080019import java.io.BufferedReader;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021
Dan Egnor62136d32010-01-05 19:09:08 -080022/**
Dan Egnor6e709122010-01-07 10:08:19 -080023 * @deprecated This class is no longer functional.
24 * Use {@link android.util.EventLog} instead.
Dan Egnor62136d32010-01-05 19:09:08 -080025 */
Jesse Wilson28c74252010-11-04 14:09:18 -070026@Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027public class EventLogTags {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028 public static class Description {
29 public final int mTag;
30 public final String mName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031
32 Description(int tag, String name) {
33 mTag = tag;
34 mName = name;
35 }
36 }
37
Dan Egnor62136d32010-01-05 19:09:08 -080038 public EventLogTags() throws IOException {}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039
Dan Egnor62136d32010-01-05 19:09:08 -080040 public EventLogTags(BufferedReader input) throws IOException {}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041
Dan Egnor62136d32010-01-05 19:09:08 -080042 public Description get(String name) { return null; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043
Dan Egnor62136d32010-01-05 19:09:08 -080044 public Description get(int tag) { return null; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045}