KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > webdav > lib > properties > ModificationDateProperty


1 // vi: set ts=3 sw=3:
2
package org.apache.webdav.lib.properties;
3
4 import org.apache.webdav.lib.ResponseEntity;
5 import org.w3c.dom.Element JavaDoc;
6
7
8 /**
9  * <code>DAV:modificationdate</code>
10  */

11 public class ModificationDateProperty extends DateProperty
12 {
13
14     public static final String JavaDoc TAG_NAME = "modificationdate";
15     
16     public ModificationDateProperty(ResponseEntity response, Element JavaDoc element)
17     {
18         super(response, element);
19     }
20
21 }
22
Popular Tags