Why are you asking us this question?

You can go to the top of your file, and find package the Params class
lives in.

Then you can look at the Javadoc for that class. If it's in an old SDK
(I don't think it has EVER been in the Android SDK -- but that will be
apparent if you check the import), you should look in the
documentation for the specific version of the JDK.

More likely, it's a third party dependency. You can look in the maven
or ant script for the project, or whatever it uses to build it, to get
a clue as to the dependencies.

More likely still, if I infer correctly from the names in the code,
it's a part of the very package you're trying to build, and you'll
have to locate it yourself.

There's no way we can help you with this. If you draw a blank, you
should be able to Google the full package + class name and locate
something about it.

On Mar 21, 2:27 am, rizwan <[email protected]> wrote:
> 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