KickJava   Java API By Example, From Geeks To Geeks.

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


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: DocumentTypeProxy.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.*;
12 import org.w3c.dom.*;
13 import org.ozoneDB.OzoneRemote;
14
15
16 public interface DocumentTypeProxy extends OzoneRemote, DocumentType, DocumentProxy {
17     
18     
19     public NamedNodeMap getEntities();
20     
21     
22     public void setEntities( NamedNodeMap entities );
23     
24     
25     public NamedNodeMap getNotations();
26     
27     
28     public void setNotations( NamedNodeMap notations );
29     
30     
31     public Hashtable getParams();
32     
33     
34     public void setParams( Hashtable params );
35     
36     
37     public boolean getStandalone();
38     
39     
40     public void setStandalone( boolean standalone );
41     
42     
43     public String JavaDoc getSystemId();
44     
45     
46     public void setSystemId( String JavaDoc systemId );
47     
48     
49     public String JavaDoc getPublicId();
50     
51     
52     public void setPublicId( String JavaDoc publicId );
53     
54     
55     public Object JavaDoc clone();
56     
57     
58     public void init( String JavaDoc systemId );
59     
60 }
61
Popular Tags