Uses of Class
fc.web.forms.Select

Packages that use Select
fc.web.forms Encapsulates HTML forms as java objects (Usage Diagram [in new window], Class Hierarchy Diagram). 
 

Uses of Select in fc.web.forms
 

Subclasses of Select in fc.web.forms
 class RefreshableSelect
          An refreshable HTML Select field.
 

Methods in fc.web.forms that return Select
 Select Select.allowMultiple(boolean allow)
          true is multiple selections are allowed, false otherwise.
 Select RefreshableSelect.allowMultiple(boolean allow)
          true is multiple selections are allowed, false otherwise.
static Select FormUtil.fillSelectWithDays(Select s)
          Fills the specified select from years, starting with the specified year.
static Select FormUtil.fillSelectWithDays(Select s, java.util.Calendar cal)
          Fills the specified select from years, starting with the specified year.
static Select FormUtil.fillSelectWithDaysToday(Select s)
          Fills the specified select from years, starting with the specified year.
static Select FormUtil.fillSelectWithMonths(Select s, boolean monthsAsText)
          Fills the specified select from years, starting with the specified year.
static Select FormUtil.fillSelectWithMonths(Select s, boolean monthsAsText, java.util.Calendar cal)
          Fills the specified select from years, starting with the specified year.
static Select FormUtil.fillSelectWithMonthsToday(Select s, boolean monthsAsText)
          Fills the specified select from years, starting with the specified year.
static Select FormUtil.fillSelectWithYears(Select s, int startYear)
          Fills the specified select from years, starting with the specified year till the current year.
static Select FormUtil.fillSelectWithYears(Select s, int startYear, java.util.Calendar yearToSelect)
          Fills the specified select from years, starting with the specified year, upto the current year.
static Select FormUtil.fillSelectWithYears(Select s, int startYear, int endYear, java.util.Calendar cal)
          Fills the specified select from years, from the specified start and end years (both inclusive).
static Select FormUtil.fillSelectWithYearsToday(Select s, int startYear)
          Fills the specified select from years, starting with the specified year.
 Select Form.getSelect(java.lang.String name)
          Returns the field with the specific name as a Select.
 Select Select.setSize(int size)
          This value (if set) is rendered as the html SIZE tag.
 Select RefreshableSelect.setSize(int size)
          This value (if set) is rendered as the html SIZE tag.
 Select Select.useQuery(java.sql.Connection con, java.lang.String query)
          Convenience method that calls useQuery(con, query, null).
 Select Select.useQuery(java.sql.Connection con, java.lang.String query, Select.Option defaultOpt)
          The specified query is used to populate this select.
 

Methods in fc.web.forms with parameters of type Select
static void FormUtil.fillSelect(Select select, java.util.List list, java.lang.String message, java.lang.Class beanClass, java.lang.String valueMethodName, java.lang.String htmlTextMethodName)
          Note: This method is almost never needed.
static void FormUtil.fillSelect(Select select, java.util.Map values, java.lang.String message)
          Note: This method is almost never needed.
static Select FormUtil.fillSelectWithDays(Select s)
          Fills the specified select from years, starting with the specified year.
static Select FormUtil.fillSelectWithDays(Select s, java.util.Calendar cal)
          Fills the specified select from years, starting with the specified year.
static Select FormUtil.fillSelectWithDaysToday(Select s)
          Fills the specified select from years, starting with the specified year.
static Select FormUtil.fillSelectWithMonths(Select s, boolean monthsAsText)
          Fills the specified select from years, starting with the specified year.
static Select FormUtil.fillSelectWithMonths(Select s, boolean monthsAsText, java.util.Calendar cal)
          Fills the specified select from years, starting with the specified year.
static Select FormUtil.fillSelectWithMonthsToday(Select s, boolean monthsAsText)
          Fills the specified select from years, starting with the specified year.
static Select FormUtil.fillSelectWithYears(Select s, int startYear)
          Fills the specified select from years, starting with the specified year till the current year.
static Select FormUtil.fillSelectWithYears(Select s, int startYear, java.util.Calendar yearToSelect)
          Fills the specified select from years, starting with the specified year, upto the current year.
static Select FormUtil.fillSelectWithYears(Select s, int startYear, int endYear, java.util.Calendar cal)
          Fills the specified select from years, from the specified start and end years (both inclusive).
static Select FormUtil.fillSelectWithYearsToday(Select s, int startYear)
          Fills the specified select from years, starting with the specified year.
 

Constructors in fc.web.forms with parameters of type Select
TestDependency(Select country, DependentSelect state)
           
TestTimedRefresher(Select target)
           
VSelectValue(Select field, java.lang.String errorMessage, java.lang.String badSelectValue)