KickJava   Java API By Example, From Geeks To Geeks.

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


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: DocumentProxy.java,v 1.1 2003/11/02 17:26:14 per_nyfelt Exp $
8

9 package org.ozoneDB.xml.dom;
10
11 import java.util.Hashtable JavaDoc;
12
13
14 import org.w3c.dom.DocumentType JavaDoc;
15
16 import org.w3c.dom.Document JavaDoc;
17
18 import org.w3c.dom.DOMImplementation JavaDoc;
19
20
21 import org.ozoneDB.OzoneRemote;
22
23 import org.ozoneDB.xml.util.XMLContainerHelper;
24
25 /**
26  *
27  */

28 public interface DocumentProxy extends OzoneRemote, Document JavaDoc, DOMImplementation JavaDoc, NodeProxy {
29
30     public void setDoctype(DocumentType JavaDoc docType);
31
32     public void setElementTypes(Hashtable JavaDoc elementTypes);
33
34     public XMLContainerHelper getContainer();
35
36     public void setContainer(XMLContainerHelper container);
37
38     public void clearDocument() throws Exception JavaDoc;
39 }
Popular Tags