am d2cd9467: Suppress warning around old vcard code.

Merge commit 'd2cd9467b876777d512911fadeb948e58b9de257' into eclair-plus-aosp

* commit 'd2cd9467b876777d512911fadeb948e58b9de257':
  Suppress warning around old vcard code.
This commit is contained in:
Daisuke Miyakawa
2009-09-22 23:26:14 -07:00
committed by Android Git Automerger
12 changed files with 0 additions and 26 deletions

View File

@@ -23,7 +23,6 @@ import java.io.UnsupportedEncodingException;
/** /**
* This interface is used to parse the V format files, such as VCard & VCal * This interface is used to parse the V format files, such as VCard & VCal
*
*/ */
@Deprecated @Deprecated
abstract public class VParser { abstract public class VParser {

View File

@@ -17,12 +17,10 @@
package android.syncml.pim.vcard; package android.syncml.pim.vcard;
import android.content.AbstractSyncableContentProvider; import android.content.AbstractSyncableContentProvider;
import android.content.ContentProviderOperation;
import android.content.ContentResolver; import android.content.ContentResolver;
import android.content.ContentUris; import android.content.ContentUris;
import android.content.ContentValues; import android.content.ContentValues;
import android.net.Uri; import android.net.Uri;
import android.provider.CallLog;
import android.provider.Contacts; import android.provider.Contacts;
import android.provider.CallLog.Calls; import android.provider.CallLog.Calls;
import android.provider.Contacts.ContactMethods; import android.provider.Contacts.ContactMethods;

View File

@@ -29,8 +29,6 @@ import android.syncml.pim.vcard.ContactStruct.PhoneData;
/** /**
* Compose VCard string * Compose VCard string
*
* @depricated Please use the code in android.pim.vcard
*/ */
@Deprecated @Deprecated
public class VCardComposer { public class VCardComposer {

View File

@@ -47,8 +47,6 @@ import java.util.List;
* If we store all VNode entries in memory like VDataBuilder.java, * If we store all VNode entries in memory like VDataBuilder.java,
* OutOfMemoryError may be thrown. Thus, this class push each VCard entry into * OutOfMemoryError may be thrown. Thus, this class push each VCard entry into
* ContentResolver immediately. * ContentResolver immediately.
*
* @depricated Please use the code in android.pim.vcard
*/ */
@Deprecated @Deprecated
public class VCardDataBuilder implements VBuilder { public class VCardDataBuilder implements VBuilder {

View File

@@ -20,9 +20,6 @@ import java.util.List;
import android.syncml.pim.VBuilder; import android.syncml.pim.VBuilder;
/**
* @depricated Please use the code in android.pim.vcard
*/
@Deprecated @Deprecated
public class VCardEntryCounter implements VBuilder { public class VCardEntryCounter implements VBuilder {
private int mCount; private int mCount;

View File

@@ -16,9 +16,6 @@
package android.syncml.pim.vcard; package android.syncml.pim.vcard;
/**
* @depricated Please use the code in android.pim.vcard
*/
@Deprecated @Deprecated
public class VCardException extends java.lang.Exception{ public class VCardException extends java.lang.Exception{
// constructors // constructors

View File

@@ -18,8 +18,6 @@ package android.syncml.pim.vcard;
/** /**
* VCardException thrown when VCard is nested without VCardParser's being notified. * VCardException thrown when VCard is nested without VCardParser's being notified.
*
* @depricated Please use the code in android.pim.vcard
*/ */
@Deprecated @Deprecated
public class VCardNestedException extends VCardException { public class VCardNestedException extends VCardException {

View File

@@ -23,9 +23,6 @@ import android.util.Log;
import java.io.ByteArrayInputStream; import java.io.ByteArrayInputStream;
import java.io.IOException; import java.io.IOException;
/**
* @deprecated Please use the code in android.pim.vcard
*/
@Deprecated @Deprecated
public class VCardParser { public class VCardParser {

View File

@@ -31,8 +31,6 @@ import java.util.HashSet;
/** /**
* This class is used to parse vcard. Please refer to vCard Specification 2.1. * This class is used to parse vcard. Please refer to vCard Specification 2.1.
*
* @deprecated Please use the code in android.pim.vcard
*/ */
@Deprecated @Deprecated
public class VCardParser_V21 { public class VCardParser_V21 {

View File

@@ -25,8 +25,6 @@ import java.util.HashSet;
/** /**
* This class is used to parse vcard3.0. <br> * This class is used to parse vcard3.0. <br>
* Please refer to vCard Specification 3.0 (http://tools.ietf.org/html/rfc2426) * Please refer to vCard Specification 3.0 (http://tools.ietf.org/html/rfc2426)
*
* @deprecated Please use the code in android.pim.vcard
*/ */
@Deprecated @Deprecated
public class VCardParser_V30 extends VCardParser_V21 { public class VCardParser_V30 extends VCardParser_V21 {

View File

@@ -26,8 +26,6 @@ import java.util.Set;
/** /**
* Class which tries to detects the source of the vCard from its properties. * Class which tries to detects the source of the vCard from its properties.
* Currently this implementation is very premature. * Currently this implementation is very premature.
*
* @deprecated Please use the code in android.pim.vcard
*/ */
@Deprecated @Deprecated
public class VCardSourceDetector implements VBuilder { public class VCardSourceDetector implements VBuilder {

View File

@@ -18,8 +18,6 @@ package android.syncml.pim.vcard;
/** /**
* VCardException used only when the version of the vCard is different. * VCardException used only when the version of the vCard is different.
*
* @deprecated Please use the code in android.pim.vcard
*/ */
@Deprecated @Deprecated
public class VCardVersionException extends VCardException { public class VCardVersionException extends VCardException {