public interface IFormField
| Modifier and Type | Method and Description |
|---|---|
IFormField |
duplicate()
duplicate() copies the data from the current IFormField into the passed-in parameter
|
String |
getName()
getName() gets the name of the field (name used in form submission)
|
boolean |
getSecured()
getSecured() returns whether the field is encrypted and should be displayed obscured
to the user
|
String |
getValue()
getValue() returns the first value associated with the Field
|
String[] |
getValues()
getValues() gets the values of the field
|
void |
setName(String name)
setName() sets the name of the field (name used in form submission)
|
void |
setSecured(boolean isSecured)
setSecured(boolean) changes whether the field should be encrypted and obscured
|
void |
setValue(String value)
setValue() sets the first value of the field
|
void |
setValues(String[] values)
setValues() sets the values of the field
|
void setName(String name)
name - String getName()
void setValue(String value)
value - void setValues(String[] values)
values - String getValue()
String[] getValues()
boolean getSecured()
void setSecured(boolean isSecured)
isSecured - IFormField duplicate()
Copyright © 2014 Jasig. All Rights Reserved.