I am using jGRASP. it has a function where I can run the program as an applet. But i get this error.

java.lang.ClassCastException: trail1modified cannot be cast to java.applet.Applet
    at sun.applet.AppletPanel.createApplet(AppletPanel.java:785)
    at sun.applet.AppletPanel.runLoader(AppletPanel.java:714)
    at sun.applet.AppletPanel.run(AppletPanel.java:368)
    at java.lang.Thread.run(Thread.java:619)
link|improve this question

72% accept rate
post the source of trail1modified – pstanton Nov 22 '10 at 20:34
I am new to java/programming. What do you mean by 'source'? – razshan Nov 22 '10 at 20:36
6  
priceless comment... – aioobe Nov 22 '10 at 20:38
feedback

1 Answer

your class trail1modified does not extend java.applet.Applet or any of its subclasses.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.