KickJava   Java API By Example, From Geeks To Geeks.

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


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

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