KickJava   Java API By Example, From Geeks To Geeks.

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


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

11 public class FileDownloadURLTag extends FileFieldAbstract {
12  
13     public String JavaDoc getField() {
14         return theFile.getDownloadUrl();
15     }
16
17 }
18
19
Popular Tags