jp.terasoluna.fw.web.codelist
Interface CodeListLoader

All Known Subinterfaces:
ReloadableCodeListLoader
All Known Implementing Classes:
DBCodeListLoader, MappedCodeListLoader

public interface CodeListLoader

Interface of code list function.
Loads the code list. Returns the code list which is loaded.


Method Summary
 CodeBean[] getCodeBeans()
          Returns the code list.
Returns the code list as an 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.
 void load()
          Initializes the code list.
 

Method Detail

load

void load()
Initializes the code list.


getCodeBeans

CodeBean[] getCodeBeans()
Returns the code list.
Returns the code list as an 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.

Returns:
Code list