01: // DAVLink.java
02: // $Id: DAVLink.java,v 1.4 2000/10/12 16:19:20 bmahe Exp $
03: // (c) COPYRIGHT MIT, INRIA and Keio, 2000.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05: package org.w3c.www.webdav.xml;
06:
07: import java.util.Vector;
08:
09: import org.w3c.dom.Element;
10:
11: /**
12: * @version $Revision: 1.4 $
13: * @author Benoît Mahé (bmahe@w3.org)
14: */
15: public class DAVLink extends DAVNode {
16:
17: public String[] getSources() {
18: return getMultipleTextChildValue(SRC_NODE);
19: }
20:
21: public String[] getDestinations() {
22: return getMultipleTextChildValue(DST_NODE);
23: }
24:
25: DAVLink(Element element) {
26: super(element);
27: }
28: }
|