KickJava   Java API By Example, From Geeks To Geeks.

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


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

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