If I have a HTML file:
<applet code="MyApplet.class" width="300" height="100">
<param name="parameter1" value="whatever">
</applet>
Then I can usually get the value of the <param> tag by using getParameter("parameter1") but if I test the applet in eclipse, it doesn't load the param value, which makes sense because I haven't even told it where the HTML file containing the param tag is. How can I get eclipse to load the HTML file when it runs an applet?