I am working on an open source application which is build on old
version of sdk ,that's I am  unable to figure out what is prm is

Params prm = new Params() ;
it contain methods like
 prm.getParam(0);
prm.getCount()
Can anyone suggest what it's replacement in android latest sdk . I am
not whether it's built in class or user define class. please advise if
it's a android sdk class.


private void ProcessMode(char ch) {
                if (ch >= '0' && ch <= '9') {
                        prm.setCurrentParam(prm.getCurrentParam() * 10 + (ch - 
'0'));
                        return;
                }
                if (ch == ';') {
                        prm.nextParam();
                        return;
                }
                switch (ts) {
                case TerminalState.MODE:
                        CommandMode(ch);
                        break;
                case TerminalState.CSI:
                        CommandCSI(ch);
                        break;
                case TerminalState.G0:
                    CommandG0(ch);
                    break;
                case TerminalState.G1:
                        CommandG1(ch);
                        break;

                }
                prm.Clear();
                ts = TerminalState.REGULAR;
        }

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe from this group, send email to 
android-developers+unsubscribegooglegroups.com or reply to this email with the 
words "REMOVE ME" as the subject.

Reply via email to