KickJava   Java API By Example, From Geeks To Geeks.

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


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 import javax.servlet.jsp.tagext.VariableInfo JavaDoc;
13
14 /**
15  * TEI class for the ImportTag. Only differs from WriterTEI in scope and default.
16  *
17  * @author Michiel Meeuwissen
18  * @version $Id: ImportTEI.java,v 1.6 2005/05/02 22:23:35 michiel Exp $
19  */

20 public class ImportTEI extends WriterTEI {
21     
22     protected int scope() {
23         return VariableInfo.AT_END;
24     }
25     protected String JavaDoc defaultType() {
26         return "string";
27     }
28 }
29
Popular Tags