KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.jahia.deprecated.taglibs.field;
2
3 import org.jahia.data.fields.FieldTypes;
4
5
6 /**
7  * Class IntegerFieldTag : displays a Jahia integer field
8  * Extends the AbstractFieldTag by specifying the good field type
9  *
10  * @author Jerome Tamiotti
11  */

12 public class IntegerFieldTag extends AbstractFieldTag {
13
14     public int getFieldType() {
15         return FieldTypes.INTEGER;
16     }
17
18 }
19
Popular Tags