org.fest.swing.launcher
Class AppletParameter

java.lang.Object
  extended by 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."

Author:
Yvonne Wang

Nested Class Summary
static class AppletParameter.AppletParameterBuilder
          Understands creation of AppletParameters.
 
Field Summary
 String name
           
 String value
           
 
Method Summary
static AppletParameter.AppletParameterBuilder name(String name)
          Starting point of the fluent interface for creation of AppletParameters.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

public final String name

value

public final String value
Method Detail

name

public static AppletParameter.AppletParameterBuilder name(String name)
Starting point of the fluent interface for creation of AppletParameters.

Parameters:
name - the name of the applet parameter.
Returns:
a builder of AppletParameters.


Copyright © 2007-2011 FEST (Fixtures for Easy Software Testing). All Rights Reserved.