KickJava   Java API By Example, From Geeks To Geeks.

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


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: ParamEntityProxy.java,v 1.2 2003/11/20 23:18:42 per_nyfelt Exp $
8

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