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: EntityProxy.java,v 1.1 2001/12/18 11:03:24 per_nyfelt Exp $
08:
09: package org.ozoneDB.xml.dom;
10:
11: import org.w3c.dom.*;
12: import org.ozoneDB.OzoneRemote;
13:
14: public interface EntityProxy extends OzoneRemote, Entity, NodeProxy {
15:
16: public void init(DocumentProxy owner, String name);
17:
18: public void init(DocumentProxy owner, String name, String value);
19:
20: public void init(DocumentProxy owner, String name, String systemId,
21: String publicId);
22:
23: public void init(DocumentProxy owner, String name, String systemID,
24: String publicID, String notation);
25:
26: public void setPublicId(String publicId);
27:
28: public void setSystemId(String systemId);
29:
30: public void setState(short newState);
31:
32: public void setNotationName(String notation);
33:
34: public void setInternal(String internalValue);
35:
36: public String getInternal();
37:
38: public boolean isInternal();
39:
40: }
|