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: ElementProxy.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 ElementProxy extends OzoneRemote, Element, NodeProxy,
15: NamedNodeMapProxy {
16:
17: public void setFirstAttr(Attr attribute);
18:
19: public void setLastAttr(Attr attribute);
20:
21: public void setAttrCount(int count);
22:
23: public AttrProxy appendAttr(AttrProxy newAttr);
24:
25: public int getLength();
26:
27: public Attr getNamedAttr(String name);
28: }
|