KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > improve > struts > taglib > layout > field > Choice


1 /*
2  * Copyright Improve SA 2005
3  * All rights reserved.
4  */

5 package fr.improve.struts.taglib.layout.field;
6
7 /**
8  * Interface that must be implemented by tags that want
9  * to add an option to an option list.
10  * @author jribette
11  */

12 public interface Choice {
13     public String JavaDoc getChoiceValue();
14     public String JavaDoc getChoiceLabel();
15     public String JavaDoc getChoiceTooltip();
16 }
17
Popular Tags