01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Core 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: ObjAttsFactory.java,v 1.1 2001/12/18 10:31:31 per_nyfelt Exp $
08:
09: package org.ozoneDB.core.xml;
10:
11: import org.xml.sax.Attributes;
12:
13: /**
14: * Factory for the attributes of the first "obj"-tag.
15: *
16: *
17: * @version
18: * @author <a href="http://www.softwarebuero.de">SMB</a>
19: */
20: interface ObjAttsFactory {
21:
22: /**
23: * Method for getting additional attributes in first obj-Tag.
24: *
25: * @param obj (the Object)
26: * @return AttributeList (a list of additionally attributes)
27: */
28: public Attributes additionallyAtts(Object obj);
29:
30: }
|