net.sf.jameleon.plugin.httpunit
Class HttpUnitParamType

java.lang.Object
  extended by net.sf.jameleon.plugin.httpunit.HttpUnitParamType

public final class HttpUnitParamType
extends Object

Contains a list of valid param types for the HttpUnit plug-in action point see HttpUnitSubmitForm for more information about the generic action point


Field Summary
static String CHECK_BOX
          a checkbox form element
static String FILE
          a file form element
static String OPTION_DISPLAY_CONTAINS
          a select option form element, used for text in the displayed value.
static String OPTION_DISPLAY_ENDS_WITH
          a select option form element, used for text in the displayed value.
static String OPTION_DISPLAY_EQUALS
          a select option form element, used for text in the displayed value.
static String OPTION_DISPLAY_MATCHES
          a select option form element, used for text in the displayed value.
static String OPTION_DISPLAY_STARTS_WITH
          a select option form element, used for text in the displayed value.
static String OPTION_INDEX
          a select option form element, used for selecting an <option> by the position number.
static String OPTION_VALUE_EQUALS
          a select option form element, used for the value attribute in the html <option> tag.
static String TEXT
          a text box of input type text form element
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

TEXT

public static final String TEXT
a text box of input type text form element

See Also:
Constant Field Values

CHECK_BOX

public static final String CHECK_BOX
a checkbox form element

See Also:
Constant Field Values

FILE

public static final String FILE
a file form element

See Also:
Constant Field Values

OPTION_VALUE_EQUALS

public static final String OPTION_VALUE_EQUALS
a select option form element, used for the value attribute in the html <option> tag.

See Also:
Constant Field Values

OPTION_INDEX

public static final String OPTION_INDEX
a select option form element, used for selecting an <option> by the position number. Index starts at 1

See Also:
Constant Field Values

OPTION_DISPLAY_CONTAINS

public static final String OPTION_DISPLAY_CONTAINS
a select option form element, used for text in the displayed value. This is used to check or submit an option value that contains a certain text entry.

See Also:
Constant Field Values

OPTION_DISPLAY_STARTS_WITH

public static final String OPTION_DISPLAY_STARTS_WITH
a select option form element, used for text in the displayed value. This is used to check or submit an option value that starts with a certain text entry.

See Also:
Constant Field Values

OPTION_DISPLAY_ENDS_WITH

public static final String OPTION_DISPLAY_ENDS_WITH
a select option form element, used for text in the displayed value. This is used to check or submit an option value that ends with a certain text entry.

See Also:
Constant Field Values

OPTION_DISPLAY_MATCHES

public static final String OPTION_DISPLAY_MATCHES
a select option form element, used for text in the displayed value. This is used to check or submit an option value that matches a certain text entry with a regular expression .

See Also:
Constant Field Values

OPTION_DISPLAY_EQUALS

public static final String OPTION_DISPLAY_EQUALS
a select option form element, used for text in the displayed value. This is used to check or submit an option value that matches a certain text entry exactly.

See Also:
Constant Field Values


Copyright © 2003-2008 Christian Hargraves. All Rights Reserved.