KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tonbeller > wcf > popup > Item


1 /*
2  * Copyright (c) 1971-2003 TONBELLER AG, Bensheim.
3  * All rights reserved.
4  */

5 package com.tonbeller.wcf.popup;
6
7
8 public interface Item {
9   /**
10    * @return image of the menu entry or null. If image starts with "/" then
11    * the context will be prepended.
12    */

13   String JavaDoc getImage();
14
15   /**
16    * @return visible text of the menuitem text or null
17    */

18   String JavaDoc getLabel();
19 }
20
Popular Tags