org.fest.swing.launcher
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."
- Author:
- Yvonne Wang
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
name
public final String name
value
public final String value
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-2010 FEST (Fixtures for Easy Software Testing). All Rights Reserved.