import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.HTML;
public class AppletContainer extends Composite {
public AppletContainer(String id, String className, String width,
String height, String jnlpHref) {
String html = "<applet id=\"" + id + "\" code=\"" +className
+ "\" width=\"" + width + "\" height=\"" + height + "\"> \n" +
" <param name=\"jnlp_href\" value=\"" + jnlpHref + "\"/>
\n" +
" </applet> ";
initWidget(new HTML(html));
}
}