KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > deprecated > taglibs > field > page > PageTypeTag


1 package org.jahia.deprecated.taglibs.field.page;
2
3
4 /**
5  * Class PageTypeTag : displays the type of the current page field;
6  * This tag must be enclosed in the PageFieldTag.
7  *
8  * @author Jerome Tamiotti
9  */

10 public class PageTypeTag extends PageFieldAbstract {
11  
12     public String JavaDoc getField() {
13         return Integer.toString(thePage.getPageType());
14     }
15
16 }
17
18
Popular Tags