Class AppletParameter

java.lang.Object
org.fest.swing.launcher.AppletParameter

public class AppletParameter extends Object
Understands a fluent interface for creation of applet parameters.

For example, the following code listing:

 // import static org.fest.swing.launcher.AppletParameter.name;

 AppletParameter = name("bgcolor").value("blue");
 
will create an applet parameter with name "bgcolor" and value "blue."

  • Field Details

    • name

      public final String name
    • value

      public final String value
  • Constructor Details

    • AppletParameter

      AppletParameter(String name, String value)
  • Method Details