/**
* This applet is just an empty applet ...
*
* I use it to use the HtmlConverter binary 'given' in the JDK:
I
* embed an instance of the EmptyApplet in my page, that contains the
* JUploadApplet: the user will be prompt to download the JRE of the correct
* version, if it nos installed. The JUploadApplet is created through the
* basic APPLET tag: it's much simplier this way, as I often change the applet
* parameters.
*
* Below is a sample of the HTML code you can insert in you HTML/ASP/PHP/JSP/ or
* whatever page. It has been generated by using the jdk tool HtmlConverter from
* a simple applet tag (see the applet commented, at the end of the sample).
* This sample has been generate from an applet tag. Just replace all occurences
* of plugins/jupload/wjhk.jupload.jar by the URL of your jar file that
* contains the empty applet.
*
*
*
*
*
*
*
*
*
*/
package wjhk.jupload2;
import java.applet.Applet;
/**
*
* @author etienne_sf
*/
public class EmptyApplet extends Applet {
/** A generated serialVersionUID, to avoid warning during compilation */
private static final long serialVersionUID = 1L;
/**
*
*/
public EmptyApplet() {
// We do ... an empty constructor ... ;-)
}
}