KickJava   Java API By Example, From Geeks To Geeks.

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


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

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