KickJava   Java API By Example, From Geeks To Geeks.

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


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

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