Home | History | Annotate | Download | only in util
      1 /*
      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 
     17 package android.util;
     18 
     19 import android.util.Log;
     20 
     21 import java.io.BufferedReader;
     22 import java.io.FileReader;
     23 import java.io.IOException;
     24 import java.util.HashMap;
     25 import java.util.regex.Matcher;
     26 import java.util.regex.Pattern;
     27 
     28 /**
     29  * @deprecated This class is no longer functional.
     30  * Use {@link android.util.EventLog} instead.
     31  */
     32 @Deprecated
     33 public class EventLogTags {
     34     public static class Description {
     35         public final int mTag;
     36         public final String mName;
     37 
     38         Description(int tag, String name) {
     39             mTag = tag;
     40             mName = name;
     41         }
     42     }
     43 
     44     public EventLogTags() throws IOException {}
     45 
     46     public EventLogTags(BufferedReader input) throws IOException {}
     47 
     48     public Description get(String name) { return null; }
     49 
     50     public Description get(int tag) { return null; }
     51 }
     52