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: NodeProxy.java,v 1.1 2001/12/18 11:03:24 per_nyfelt Exp $
08:
09: package org.ozoneDB.xml.dom;
10:
11: //import the w3c-DOM-Node
12: import org.w3c.dom.*; //import the OzoneRemote-Interface
13: import org.ozoneDB.OzoneRemote;
14:
15: public interface NodeProxy extends OzoneRemote, Node {
16:
17: public void setNodeName(String nodeName);
18:
19: public boolean isReadOnly();
20:
21: public void setReadOnly();
22:
23: public Node getChild(int index);
24:
25: public int getChildCount();
26:
27: public void setParentNode(Node newParent);
28:
29: public void setPreviousSibling(Node prevNode);
30:
31: public void setNextSibling(Node nextNode);
32:
33: public NodeList getChildNodes();
34:
35: public void setOwnerDocument(Document owner);
36:
37: public void init(DocumentProxy owner, String name, String value,
38: boolean checkName) throws DOMException;
39:
40: public void cloneInto(NodeProxy into, boolean deep);
41:
42: }
|