KickJava   Java API By Example, From Geeks To Geeks.

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


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

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