KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > xml > dom > NodeProxy


1 // You can redistribute this software and/or modify it under the terms of
2
// the Ozone Library License version 1 published by ozone-db.org.
3
//
4
// The original code and portions created by SMB are
5
// Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
6
//
7
// $Id: NodeProxy.java,v 1.1 2003/11/02 17:26:14 per_nyfelt Exp $
8

9 package org.ozoneDB.xml.dom;
10
11 //import the w3c-DOM-Node
12
import org.w3c.dom.*;
13 //import the OzoneRemote-Interface
14
import org.ozoneDB.OzoneRemote;
15
16
17 public interface NodeProxy extends OzoneRemote, Node {
18     
19     
20     public void setNodeName( String JavaDoc nodeName );
21     
22     
23     public boolean isReadOnly();
24     
25     
26     public void setReadOnly();
27     
28     
29     public Node getChild( int index );
30     
31     
32     public int getChildCount();
33     
34     
35     public void setParentNode( Node newParent );
36     
37     
38     public void setPreviousSibling( Node prevNode );
39     
40     
41     public void setNextSibling( Node nextNode );
42     
43     
44     public NodeList getChildNodes();
45     
46     
47     public void setOwnerDocument( Document owner );
48     
49     
50     public void init( DocumentProxy owner, String JavaDoc name, String JavaDoc value, boolean checkName ) throws DOMException;
51     
52     
53     public void cloneInto( NodeProxy into, boolean deep );
54     
55 }
56
Popular Tags