package midp.firstAid;
import javax.microedition.lcdui.*;
public class AboutCopy extends Basic {
public AboutCopy()
{
super("About Product");
append("Copyright 2008\n " +
"\n Nanthikesvaran\n" +
"\n" +
"This product based on Java Technology " +
"to give and provide sufficient information " +
"of a knowledge on First Aid.\n"+
"It's still under development as it's only a " +
"prototype of an application"
);
}
}
Errors
C:\Documents and Settings\Lord Executioner\Desktop\firstAid\AboutCopy.java:3: package javax.microedition.lcdui does not exist
import javax.microedition.lcdui.*;
^
C:\Documents and Settings\Lord Executioner\Desktop\firstAid\AboutCopy.java:5: cannot find symbol
symbol: class Basic
public class AboutCopy extends Basic {
^
C:\Documents and Settings\Lord Executioner\Desktop\firstAid\AboutCopy.java:10: cannot find symbol
symbol : method append(java.lang.String)
location: class midp.firstAid.AboutCopy
append("Copyright 2008\n " +
^
3 errors
Process completed.
Please Advise.