KickJava   Java API By Example, From Geeks To Geeks.

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


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

9 package org.ozoneDB.xml.dom;
10
11 import org.w3c.dom.*;
12 import org.ozoneDB.OzoneRemote;
13
14
15 public interface EntityProxy extends OzoneRemote, Entity, NodeProxy {
16     
17     
18     public void init( DocumentProxy owner, String JavaDoc name );
19     
20     
21     public void init( DocumentProxy owner, String JavaDoc name, String JavaDoc value );
22     
23     
24     public void init( DocumentProxy owner, String JavaDoc name, String JavaDoc systemId, String JavaDoc publicId );
25     
26     
27     public void init( DocumentProxy owner, String JavaDoc name, String JavaDoc systemID, String JavaDoc publicID, String JavaDoc notation );
28     
29     
30     public void setPublicId( String JavaDoc publicId );
31     
32     
33     public void setSystemId( String JavaDoc systemId );
34     
35     
36     public void setState( short newState );
37     
38     
39     public void setNotationName( String JavaDoc notation );
40     
41     
42     public void setInternal( String JavaDoc internalValue );
43     
44     
45     public String JavaDoc getInternal();
46     
47     
48     public boolean isInternal();
49     
50 }
51
Popular Tags