KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > deprecated > taglibs > field > UndefinedFieldTag


1 package org.jahia.deprecated.taglibs.field;
2
3 import org.jahia.data.fields.FieldTypes;
4
5
6 /**
7  * Class UndefinedFieldTag : displays an undefined field, that will be a SMALLTEXT,
8  * BIGTEXT, or APPLICATION field
9  * Simply extends the AbstractFieldTag class by specifying the good type
10  *
11  * @author Jerome Tamiotti
12  */

13 public class UndefinedFieldTag extends AbstractFieldTag {
14
15     public int getFieldType() {
16         return FieldTypes.UNDEFINED;
17     }
18
19 }
20
Popular Tags