Uses of Class
net.mlw.vlh.ValueListInfo

Packages that use ValueListInfo
net.mlw.vlh The Value List Handler is an implementation of the Core J2EE Patterns - Value List Handler  
net.mlw.vlh.adapter This package contains some standard adapters for the Value List Handler. 
net.mlw.vlh.adapter.file This package contains an adapter to read teh contents of the file system. 
net.mlw.vlh.adapter.hibernate This package contains an adapter to delegate to Hibernate 2.x
net.mlw.vlh.adapter.hibernate3 This package contains an adapter to delegate to Hibernate 3.x
net.mlw.vlh.adapter.ibatis.sqlmaps This package contains an adapter to delegate to iBATIS SQL Maps 2.0
net.mlw.vlh.adapter.jdbc This package contains some standard adapters that use JDBC. 
net.mlw.vlh.adapter.jdbc.dynabean This package contains an adapter to query the the database and return a DynaBean
net.mlw.vlh.adapter.jdbc.dynclass This package contains an adapter to query the the database and return a List of Dynclass(s). 
net.mlw.vlh.adapter.jdbc.objectWrapper   
net.mlw.vlh.adapter.jdbc.spring   
net.mlw.vlh.adapter.spring   
net.mlw.vlh.adapter.util This package contains some standard utilities for the Value List Handler Adapters. 
net.mlw.vlh.web This package contains tag libs to display a ValueList in a web environment. 
net.mlw.vlh.web.mvc   
net.mlw.vlh.web.tag This package contains tag libs to display a ValueList in a web environment. 
net.mlw.vlh.web.tag.support This package contains classes to support the rendering of the valuelist in a web environment. 
 

Uses of ValueListInfo in net.mlw.vlh
 

Methods in net.mlw.vlh that return ValueListInfo
 ValueListInfo ValueList.getValueListInfo()
          Returns the embeded ValueListInfo
 ValueListInfo DefaultListBackedValueList.getValueListInfo()
           
 

Methods in net.mlw.vlh with parameters of type ValueListInfo
 ValueList ValueListHandler.getValueList(String name, ValueListInfo info)
          Gets a ValueList with the given name.
 ValueList ValueListAdapter.getValueList(String name, ValueListInfo info)
          Gets a ValueList
 ValueList DefaultValueListHandlerImpl.getValueList(String name, ValueListInfo info)
           
 

Constructors in net.mlw.vlh with parameters of type ValueListInfo
DefaultListBackedValueList(List list, ValueListInfo info)
          Default constructor.
 

Uses of ValueListInfo in net.mlw.vlh.adapter
 

Methods in net.mlw.vlh.adapter with parameters of type ValueListInfo
 ValueList ValueListAdapterCacheDecorator.getValueList(String name, ValueListInfo info)
           
 

Uses of ValueListInfo in net.mlw.vlh.adapter.file
 

Methods in net.mlw.vlh.adapter.file with parameters of type ValueListInfo
 ValueList FileSystemAdapter.getValueList(String name, ValueListInfo info)
           
 

Uses of ValueListInfo in net.mlw.vlh.adapter.hibernate
 

Methods in net.mlw.vlh.adapter.hibernate with parameters of type ValueListInfo
 ValueList Hibernate20Adapter.getValueList(String name, ValueListInfo info)
           
protected  ValueList Hibernate20Adapter.getListBackedValueList(ValueListInfo info, List list)
           
 

Uses of ValueListInfo in net.mlw.vlh.adapter.hibernate3
 

Methods in net.mlw.vlh.adapter.hibernate3 with parameters of type ValueListInfo
 ValueList HibernateAdapter.getValueList(String name, ValueListInfo info)
           
protected  ValueList HibernateAdapter.getListBackedValueList(ValueListInfo info, List list)
           
 

Uses of ValueListInfo in net.mlw.vlh.adapter.ibatis.sqlmaps
 

Methods in net.mlw.vlh.adapter.ibatis.sqlmaps with parameters of type ValueListInfo
 ValueList Ibatis20Adapter.getValueList(String name, ValueListInfo info)
           
 

Uses of ValueListInfo in net.mlw.vlh.adapter.jdbc
 

Methods in net.mlw.vlh.adapter.jdbc with parameters of type ValueListInfo
 ValueList AbstractJdbcAdapter.getValueList(String name, ValueListInfo info)
           
abstract  List AbstractJdbcAdapter.processResultSet(String name, ResultSet result, int numberPerPage, ValueListInfo info)
          This method takes the result and puts the VOs in the List.
 

Uses of ValueListInfo in net.mlw.vlh.adapter.jdbc.dynabean
 

Methods in net.mlw.vlh.adapter.jdbc.dynabean with parameters of type ValueListInfo
 List DefaultDynaBeanAdapter.processResultSet(String name, ResultSet result, int numberPerPage, ValueListInfo info)
           
 

Uses of ValueListInfo in net.mlw.vlh.adapter.jdbc.dynclass
 

Methods in net.mlw.vlh.adapter.jdbc.dynclass with parameters of type ValueListInfo
 List DefaultDynclassAdapter.processResultSet(String name, ResultSet result, int numberPerPage, ValueListInfo info)
           
 

Uses of ValueListInfo in net.mlw.vlh.adapter.jdbc.objectWrapper
 

Methods in net.mlw.vlh.adapter.jdbc.objectWrapper with parameters of type ValueListInfo
 List DefaultWrapperAdapter.processResultSet(String name, ResultSet result, int numberPerPage, ValueListInfo info)
           
 

Uses of ValueListInfo in net.mlw.vlh.adapter.jdbc.spring
 

Methods in net.mlw.vlh.adapter.jdbc.spring with parameters of type ValueListInfo
 List SpringDaoValueListAdapter.processResultSet(String name, ResultSet result, int numberPerPage, ValueListInfo info)
           
 

Uses of ValueListInfo in net.mlw.vlh.adapter.spring
 

Methods in net.mlw.vlh.adapter.spring with parameters of type ValueListInfo
 ValueList MappingSqlQueryAdapter.getValueList(String name, ValueListInfo info)
           
 

Uses of ValueListInfo in net.mlw.vlh.adapter.util
 

Methods in net.mlw.vlh.adapter.util with parameters of type ValueListInfo
 void ObjectWrapper.setValueListInfo(ValueListInfo info)
           
 void ObjectValidator.setValueListInfo(ValueListInfo info)
          Adapter will set ValueListInfo before use.
 

Uses of ValueListInfo in net.mlw.vlh.web
 

Methods in net.mlw.vlh.web that return ValueListInfo
static ValueListInfo ValueListRequestUtil.buildValueListInfo(javax.servlet.http.HttpServletRequest request)
          Build the ValueListInfo from the request and parameters.
static ValueListInfo ValueListRequestUtil.buildValueListInfo(javax.servlet.http.HttpServletRequest request, String id)
          Build the ValueListInfo from the request for certain Table id.
 

Uses of ValueListInfo in net.mlw.vlh.web.mvc
 

Methods in net.mlw.vlh.web.mvc that return ValueListInfo
 ValueListInfo ValueListHandlerHelper.getValueListInfo(javax.servlet.http.HttpServletRequest request)
          To get ValueListInfo it use the TableInfo.DEFAULT_ID as the tableId.
 ValueListInfo ValueListHandlerHelper.getValueListInfo(javax.servlet.http.HttpServletRequest request, String tableId)
          Return ValueListInfo from a request (which is preferr to session) or a session or new ValueListInfo().
 

Methods in net.mlw.vlh.web.mvc with parameters of type ValueListInfo
 ValueList ValueListHandlerHelper.getValueList(String name, ValueListInfo info)
          Retrieve valueList from ValueListHadler bean.
 void ValueListHandlerHelper.backupInfoFor(javax.servlet.http.HttpServletRequest request, ValueListInfo info)
          Save ValueListInfo to the session with key of TableInfo.DEFAULT_ID.
 void ValueListHandlerHelper.backupInfoFor(javax.servlet.http.HttpServletRequest request, ValueListInfo info, String tableId)
          Save ValueListInfo to session with key of tableId if info is null, remove the tableId attribute from session.
 int ValueListHandlerHelper.getLastPageAfterDelete(ValueListInfo info)
          If delete first and at that time also the last entry on the last page, you sets actual last page! You should call this method in a action after delete is done.
 

Uses of ValueListInfo in net.mlw.vlh.web.tag
 

Methods in net.mlw.vlh.web.tag that return ValueListInfo
protected  ValueListInfo DefaultPagingTag.getValueListInfo()
           
 

Methods in net.mlw.vlh.web.tag with parameters of type ValueListInfo
protected  void DefaultRowTag.renderHeaderRow(StringBuffer sb, List columns, TableInfo tableInfo, ValueListInfo vlInfo, Map parameters)
          Renders header row.
protected  void DefaultRowTag.renderHeaderCell(StringBuffer sb, ColumnInfo columnInfo, TableInfo tableInfo, ValueListInfo vlInfo, Map parameters)
          Renders header cell.
protected  void DefaultRowTag.renderNestedHeader(StringBuffer sb, ColumnInfo columnInfo, TableInfo tableInfo, ValueListInfo vlInfo, Map parameters)
           
 

Uses of ValueListInfo in net.mlw.vlh.web.tag.support
 

Methods in net.mlw.vlh.web.tag.support with parameters of type ValueListInfo
 String HtmlDisplayProvider.getHeaderCellPreProcess(ColumnInfo columnInfo, ValueListInfo info)
          Get the HTML that comes before the column text.
 String HtmlDisplayProvider.getHeaderLabel(ColumnInfo columnInfo, TableInfo tableInfo, ValueListInfo info, Map includeParameters)
          Formats the text to be displayed as the header by wraping it in a link if sorting is enabled.
protected  void HtmlDisplayProvider.renderHeaderLabelLink(StringBuffer sb, ColumnInfo columnInfo, TableInfo tableInfo, ValueListInfo info, Map parameters)
          Renders a link as a header of the column if the sorting is enabled.
 String HtmlCssDisplayProvider.getHeaderCellPreProcess(ColumnInfo columnInfo, ValueListInfo info)
          Get the HTML that comes before the column text.
 String HtmlCssDisplayProvider.getHeaderLabel(ColumnInfo columnInfo, TableInfo tableInfo, ValueListInfo info, Map includeParameters)
          Formats the text to be displayed as the header by waraping it in a link if sorting is enabled.
protected  void HtmlCssDisplayProvider.renderHeaderLabelLink(StringBuffer sb, ColumnInfo columnInfo, TableInfo tableInfo, ValueListInfo info, Map parameters)
          Renders a link as a header of the column if the sorting is enabled.
 String ExcelDisplayProvider.getHeaderCellPreProcess(ColumnInfo columnInfo, ValueListInfo info)
           
 String ExcelDisplayProvider.getHeaderLabel(ColumnInfo columnInfo, TableInfo tableInfo, ValueListInfo info, Map includeParameters)
           
 String ExcelDisplayProvider.getNestedHeaderPreProcess(ColumnInfo columnInfo, ValueListInfo info)
           
 String DisplayProvider.getHeaderCellPreProcess(ColumnInfo columnInfo, ValueListInfo info)
          Get the HTML that comes before the column text.
 String DisplayProvider.getHeaderLabel(ColumnInfo columnInfo, TableInfo tableInfo, ValueListInfo info, Map includeParameters)
          Formats the text to be displayed as the header by waraping it in a link if sorting is enabled.
 String DisplayProvider.getNestedHeaderPreProcess(ColumnInfo columnInfo, ValueListInfo info)
           
 String CsvDisplayProvider.getHeaderCellPreProcess(ColumnInfo columnInfo, ValueListInfo info)
           
 String CsvDisplayProvider.getHeaderLabel(ColumnInfo columnInfo, TableInfo tableInfo, ValueListInfo info, Map includeParameters)
           
 String CsvDisplayProvider.getNestedHeaderPreProcess(ColumnInfo columnInfo, ValueListInfo info)
           
 String AbstractHTMLDisplayProvider.getNestedHeaderPreProcess(ColumnInfo columnInfo, ValueListInfo info)
           
 



Copyright © 2003-2006 mlavilson. All Rights Reserved.