KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > deprecated > taglibs > field > file > FileRealNameTag


1 package org.jahia.deprecated.taglibs.field.file;
2
3 /**
4  * Class FileRealNameTag : displays the url of the current file field;
5  * This tag must be enclosed in the FileFieldTag.
6  *
7  * @author Jerome Tamiotti
8  */

9 public class FileRealNameTag extends FileFieldAbstract {
10  
11     public String JavaDoc getField() {
12         return theFile.getRealName();
13     }
14
15 }
16
17
Popular Tags