Home | History | Annotate | Download | only in vcard
      1 /*
      2  * Copyright (C) 2009 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 package com.android.vcard;
     17 
     18 import java.util.List;
     19 
     20 /**
     21  * The class which just counts the number of vCard entries in the specified input.
     22  */
     23 public class VCardEntryCounter implements VCardInterpreter {
     24     private int mCount;
     25 
     26     public int getCount() {
     27         return mCount;
     28     }
     29 
     30     public void start() {
     31     }
     32 
     33     public void end() {
     34     }
     35 
     36     public void startEntry() {
     37     }
     38 
     39     public void endEntry() {
     40         mCount++;
     41     }
     42 
     43     public void startProperty() {
     44     }
     45 
     46     public void endProperty() {
     47     }
     48 
     49     public void propertyGroup(String group) {
     50     }
     51 
     52     public void propertyName(String name) {
     53     }
     54 
     55     public void propertyParamType(String type) {
     56     }
     57 
     58     public void propertyParamValue(String value) {
     59     }
     60 
     61     public void propertyValues(List<String> values) {
     62     }
     63 }
     64