Shop OBEX P1 Docs P2 Docs Learn Events
Java Command Reference — Parallax Forums

Java Command Reference

trytryagaintrytryagain Posts: 26
edited 2009-09-23 20:42 in General Discussion
Does anyone know where to get a listing
on the the complete set of java subset
commands supported under stamp.core?

The Javelin stamp users manual seems
to be missing a bunch.

Thanks

[url=mailto:Jeff@trytryagain]Jeff@trytryagain[/url]

Comments

  • Peter VerkaikPeter Verkaik Posts: 3,956
    edited 2009-09-23 19:53
    Try IDE help.

    The package description lists all core methods distributed with IDE v2.0.3
    All these methods are discussed in the manual.

    I have written some additional classes for package core and these
    are stored at the yahoo group.
    http://tech.groups.yahoo.com/group/JavelinCode/files/Javelin%20Stamp%20IDE/lib/stamp/core/

    regards peter
  • trytryagaintrytryagain Posts: 26
    edited 2009-09-23 20:17
    OK Pete, last question for the day.

    System.out.println(subString(5,7,buffer));

    For example, I want a substring routine

    I found this command under the help file
    The compiler reports "No method named "substring""

    I have import stamp.core.*;
    I put import java.lang.*; at the top of the project as well
    I also tried import stamp.*;

    How do I determine the proper class for this command?
    It says the command is in the StringBuffer class which
    I am already using successfully

    public void subString(int start,
    int end,
    StringBuffer dest)Extract a substring from the StringBuffer into a existing StringBuffer.

    Just very confusing.

    Jeff
  • trytryagaintrytryagain Posts: 26
    edited 2009-09-23 20:42
    Peter,

    My bad. Please disregard previous post, its getting late!

    buffer.subString(5,7,new string buffer!);

    Thanks again for all your help today.

    Jeff
Sign In or Register to comment.