Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Re: RE: Re: RE: AspectJ with Applet

Actually I put System.out.println in my Applet class and I do see the standard output being printed on my shell window using appletviewer, so I don't think it's output problem...  But the System.out.println defined in my aspect doesn't have any effect on the applet.......... deeply puzzled.....
I wonder if it's html problem, this is my html code:

<HTML>
<HEAD>
<TITLE>The Hello World Applet</TITLE>
</HEAD>
<BODY>
<APPLET
   CODE="HelloWorldApplet"
   WIDTH=150
   HEIGHT=25>
      <PARAM NAME="ARCHIVE" VALUE="/aspectj1.2/lib/aspectjrt.jar">
      <PARAM NAME="type" VALUE="application/x-java-applet;version=1.5">
      <PARAM NAME="scriptable" VALUE="false">
</APPLET>
</BODY>
</HTML>

Thanks so much in advance!!

Sent from the AspectJ - users forum at Nabble.com.

Back to the top