01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Library License version 1 published by ozone-db.org.
03: //
04: // The original code and portions created by SMB are
05: // Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
06: //
07: // $Id: NamedNodeMapProxy.java,v 1.1 2001/12/18 11:03:24 per_nyfelt Exp $
08:
09: package org.ozoneDB.xml.dom;
10:
11: import java.util.*;
12: import org.w3c.dom.*;
13: import org.ozoneDB.OzoneRemote;
14:
15: public interface NamedNodeMapProxy extends OzoneRemote, NamedNodeMap {
16:
17: // public Node getNamedItemNS(java.lang.String namespaceURI,
18: // java.lang.String localName);
19: //
20: // public Node setNamedItemNS(Node arg)
21: // throws DOMException;
22: //
23: // public Node removeNamedItemNS(java.lang.String namespaceURI,
24: // java.lang.String localName)
25: // throws DOMException;
26:
27: public Node getNamedItem(String name);
28:
29: public Enumeration elements();
30:
31: public void init(NodeProxy owner, Dictionary dictionary);
32:
33: }
|