01: /*
02: * The contents of this file are subject to the
03: * Mozilla Public License Version 1.1 (the "License");
04: * you may not use this file except in compliance with the License.
05: * You may obtain a copy of the License at http://www.mozilla.org/MPL/
06: *
07: * Software distributed under the License is distributed on an "AS IS"
08: * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
09: * 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;
22:
23: import org.openharmonise.vfs.metadata.*;
24: import org.openharmonise.vfs.metadata.value.*;
25: import org.w3c.dom.Document;
26: import org.w3c.dom.Element;
27:
28: /**
29: * WebDAV URI value implementation.
30: *
31: * @author Matthew Large
32: * @version $Revision: 1.1 $
33: *
34: */
35: public class DAVURIValue extends URIValue {
36:
37: /**
38: * Constructs a new WebDAV URI value.
39: *
40: * @param sValue Value
41: */
42: public DAVURIValue(String sValue) {
43: super (sValue);
44: }
45:
46: /**
47: *
48: */
49: public DAVURIValue() {
50: super ();
51: }
52:
53: /**
54: * Publishes WebDAV URI values to a XML element.
55: *
56: * @param xmlDoc Owning XML document
57: * @param propEl Element to append to
58: * @param aValues List of {@link DAVBooleanValue} objects
59: */
60: public static void toXML(Document xmlDoc, Element propEl,
61: List 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 propEl) {
73:
74: }
75:
76: }
|