FileDocCategorySizeDatePackage
Input.javaAPI DocAndroid 1.5 API2852Wed May 06 22:42:02 BST 2009com.android.internal.telephony.gsm.stk

Input

public class Input extends Object implements android.os.Parcelable
Container class for STK GET INPUT, GET IN KEY commands parameters.

Fields Summary
public String
text
public String
defaultText
public android.graphics.Bitmap
icon
public int
minLen
public int
maxLen
public boolean
ucs2
public boolean
packed
public boolean
digitOnly
public boolean
echo
public boolean
yesNo
public boolean
helpAvailable
public static final Parcelable.Creator
CREATOR
Constructors Summary
Input()

        text = "";
        defaultText = null;
        icon = null;
        minLen = 0;
        maxLen = 1;
        ucs2 = false;
        packed = false;
        digitOnly = false;
        echo = false;
        yesNo = false;
        helpAvailable = false;
    
private Input(android.os.Parcel in)

        text = in.readString();
        defaultText = in.readString();
        icon = in.readParcelable(null);
        minLen = in.readInt();
        maxLen = in.readInt();
        ucs2 = in.readInt() == 1 ? true : false;
        packed = in.readInt() == 1 ? true : false;
        digitOnly = in.readInt() == 1 ? true : false;
        echo = in.readInt() == 1 ? true : false;
        yesNo = in.readInt() == 1 ? true : false;
        helpAvailable = in.readInt() == 1 ? true : false;
    
Methods Summary
public intdescribeContents()

        return 0;
    
booleansetIcon(android.graphics.Bitmap Icon)


        return true; 
public voidwriteToParcel(android.os.Parcel dest, int flags)

        dest.writeString(text);
        dest.writeString(defaultText);
        dest.writeParcelable(icon, 0);
        dest.writeInt(minLen);
        dest.writeInt(maxLen);
        dest.writeInt(ucs2 ? 1 : 0);
        dest.writeInt(packed ? 1 : 0);
        dest.writeInt(digitOnly ? 1 : 0);
        dest.writeInt(echo ? 1 : 0);
        dest.writeInt(yesNo ? 1 : 0);
        dest.writeInt(helpAvailable ? 1 : 0);