KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openharmonise > webdav > client > value > DAVURIValue


1 /*
2  * The contents of this file are subject to the
3  * Mozilla Public License Version 1.1 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at http://www.mozilla.org/MPL/
6  *
7  * Software distributed under the License is distributed on an "AS IS"
8  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
9  * See the License for the specific language governing rights and
10  * limitations under the License.
11  *
12  * The Initial Developer of the Original Code is Simulacra Media Ltd.
13  * Portions created by Simulacra Media Ltd are Copyright (C) Simulacra Media Ltd, 2004.
14  *
15  * All Rights Reserved.
16  *
17  * Contributor(s):
18  */

19 package org.openharmonise.webdav.client.value;
20
21 import java.util.List JavaDoc;
22
23 import org.openharmonise.vfs.metadata.*;
24 import org.openharmonise.vfs.metadata.value.*;
25 import org.w3c.dom.Document JavaDoc;
26 import org.w3c.dom.Element JavaDoc;
27
28
29 /**
30  * WebDAV URI value implementation.
31  *
32  * @author Matthew Large
33  * @version $Revision: 1.1 $
34  *
35  */

36 public class DAVURIValue extends URIValue {
37
38     /**
39      * Constructs a new WebDAV URI value.
40      *
41      * @param sValue Value
42      */

43     public DAVURIValue(String JavaDoc sValue) {
44         super(sValue);
45     }
46
47     /**
48      *
49      */

50     public DAVURIValue() {
51         super();
52     }
53     
54     /**
55      * Publishes WebDAV URI values to a XML element.
56      *
57      * @param xmlDoc Owning XML document
58      * @param propEl Element to append to
59      * @param aValues List of {@link DAVBooleanValue} objects
60      */

61     public static void toXML(Document JavaDoc xmlDoc, Element JavaDoc propEl, List JavaDoc aValues) {
62
63     }
64     
65     /**
66      * Populates a property instance with WebDAV URI values from
67      * XML.
68      *
69      * @param propInst Property instance to populate
70      * @param propEl Root element of property instance
71      */

72     public static void fromXML(PropertyInstance propInst, Element JavaDoc propEl) {
73         
74     }
75
76 }
77
Popular Tags