Uses of Class
jp.terasoluna.fw.web.codelist.CodeBean

Packages that use CodeBean
jp.terasoluna.fw.web.codelist Related to the code list function of Web version  
 

Uses of CodeBean in jp.terasoluna.fw.web.codelist
 

Fields in jp.terasoluna.fw.web.codelist with type parameters of type CodeBean
private  java.util.List<CodeBean> DBCodeListLoader.codeLists
          Code list.
private  java.util.List<CodeBean> MappedCodeListLoader.codeLists
          Code list.
 

Methods in jp.terasoluna.fw.web.codelist that return CodeBean
private  CodeBean DBCodeListQuery.createCodeBean(java.sql.ResultSet rs)
          Fetches the value from ResultSet and generates CodeBean instance.
 CodeBean[] CodeListLoader.getCodeBeans()
          Returns code list.
Returns code list as the array of CodeBean.
Code list is the unique information in the application. Implementation should be done in such a way that there should be no impact even if the contents of code list are edited.
 CodeBean[] DBCodeListLoader.getCodeBeans()
           Returns code list. Code list can be fetched as array of CodeBean.
*Code list is the unique information in the application. In case of overriding this method, implementation should be done in such a way that there should be no impact even if the contents of code list are edited. by using the business logic.
 CodeBean[] MappedCodeListLoader.getCodeBeans()
          Fetches the code list.

Code list can be fetched as array of CodeBean.
*Code list is the unique information in the application. In case of overriding this method, implementation should be done in such a way that there should be no impact even if the contents of code list are edited by using the business logic.