KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > bridge > jsp > taglib > pageflow > UrlTEI


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.pageflow;
11
12 import org.mmbase.bridge.jsp.taglib.WriterTEI;
13 import javax.servlet.jsp.tagext.VariableInfo JavaDoc;
14
15 /**
16  * The TEI class for UrlTag. If 'jspvar' attribute is defined, then a
17  * UrlTag will not output an url but set a variable with it. That
18  * variable cannot be used in jsp:include, so it's probably not that usefull.
19  *
20  * @author Michiel Meeuwissen
21  * @version $Id: UrlTEI.java,v 1.4 2003/06/06 10:03:28 pierre Exp $
22  */

23
24 public class UrlTEI extends WriterTEI {
25     
26     protected int scope() {
27         return VariableInfo.AT_END;
28     }
29     protected String JavaDoc defaultType() {
30         return "String";
31     }
32         
33 }
34
Popular Tags