OSDN Git Service

"https://svn.sourceforge.jp/svnroot/ea2ddl" にプロジェクト "ea2ddl-dao" を共用
[ea2ddl/ea2ddl.git] / ea2ddl-dao / src / main / java / jp / sourceforge / ea2ddl / dao / allcommon / bhv / setup / ValueLabelSetupper.java
1 package jp.sourceforge.ea2ddl.dao.allcommon.bhv.setup;\r
2 \r
3 import jp.sourceforge.ea2ddl.dao.allcommon.Entity;\r
4 \r
5 /**\r
6  * The interface of Value-Label Setupper.\r
7  * @param <ENTITY> The type of entity.\r
8  * @author DBFlute(AutoGenerator)\r
9  */\r
10 public interface ValueLabelSetupper<ENTITY extends Entity> {\r
11 \r
12     /**\r
13      * Set up value-label.\r
14      * @param box Value-label box. (NotNull)\r
15      * @param entity Entity. (NotNull)\r
16      */\r
17     public void setup(ValueLabelBox box, ENTITY entity);\r
18 }\r