KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > bridge > jsp > taglib > TagIdentifier


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.bridge.jsp.taglib;
11
12 /**
13  * Interface designed to make it possible for child tags
14  * to access a parent tag using a String id
15  *
16  * @author Kees Jongenburger
17  * @version $Id: TagIdentifier.java,v 1.4 2004/01/14 19:20:10 michiel Exp $
18  */

19
20 public interface TagIdentifier {
21     /**
22      * @return the String id the the tag. Id is is a user defined
23      * identifier
24      */

25     public String JavaDoc getId();
26 }
27
Popular Tags