KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > improve > struts > taglib > layout > util > MenuInterface


1 package fr.improve.struts.taglib.layout.util;
2
3 import fr.improve.struts.taglib.layout.menu.MenuComponent;
4
5 /**
6  * interface that should implement a menu or menuItem tag so that menuItems cab e added
7  * @author: JeanNoël Ribette
8  */

9 public interface MenuInterface {
10     public void addItem(MenuComponent item);
11 }
12
Popular Tags