KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > taglibs > field > BigTextFieldTag


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

12 public class BigTextFieldTag extends AbstractFieldTag {
13
14     // the value attribute can be a default text in case of a BigText field,
15
// or "<jahia_htmleditor>" to specify it uses the HTML editor
16

17     public int getFieldType() {
18         return FieldTypes.BIGTEXT;
19     }
20
21 }
22
Popular Tags