Java Command Reference
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]
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
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
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
My bad. Please disregard previous post, its getting late!
buffer.subString(5,7,new string buffer!);
Thanks again for all your help today.
Jeff