public static class SmsApplication.SmsApplicationData extends Object
Modifier and Type | Field and Description |
---|---|
String |
mMmsReceiverClass
The class name of the WAP_PUSH_DELIVER_ACTION receiver in this app.
|
String |
mPackageName
Package name for this SMS app.
|
String |
mProviderChangedReceiverClass
The class name of the ACTION_EXTERNAL_PROVIDER_CHANGE receiver in this app.
|
String |
mRespondViaMessageClass
The class name of the ACTION_RESPOND_VIA_MESSAGE intent in this app.
|
String |
mSendToClass
The class name of the ACTION_SENDTO intent in this app.
|
String |
mSmsAppChangedReceiverClass
The class name of the ACTION_DEFAULT_SMS_PACKAGE_CHANGED receiver in this app.
|
String |
mSmsReceiverClass
The class name of the SMS_DELIVER_ACTION receiver in this app.
|
int |
mUid
The user-id for this application
|
Constructor and Description |
---|
SmsApplicationData(String packageName,
int uid) |
Modifier and Type | Method and Description |
---|---|
String |
getApplicationName(Context context) |
boolean |
isComplete()
Returns true if this SmsApplicationData is complete (all intents handled).
|
String |
toString()
Returns a string representation of the object.
|
public String mPackageName
public String mSmsReceiverClass
public String mMmsReceiverClass
public String mRespondViaMessageClass
public String mSendToClass
public String mSmsAppChangedReceiverClass
public String mProviderChangedReceiverClass
public int mUid
public SmsApplicationData(String packageName, int uid)
public boolean isComplete()
public String toString()
Object
toString
method returns a string that
"textually represents" this object. The result should
be a concise but informative representation that is easy for a
person to read.
It is recommended that all subclasses override this method.
The toString
method for class Object
returns a string consisting of the name of the class of which the
object is an instance, the at-sign character `@
', and
the unsigned hexadecimal representation of the hash code of the
object. In other words, this method returns a string equal to the
value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())