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: RefElement.java,v 1.1 2001/12/18 10:31:31 per_nyfelt Exp $
08:
09: package org.ozoneDB.core.xml;
10:
11: /**
12: * This class saves all attributes of the refElement.
13: *
14: * @version $Revision: 1.1 $
15: * @author <a href="http://www.softwarebuero.de">SMB</a>
16: */
17: public class RefElement {
18:
19: //
20: // member
21: //
22:
23: /**
24: */
25: private Object refObj;
26:
27: //
28: // construcor
29: //
30:
31: /**
32: * @param refObj
33: */
34: public RefElement(Object refObj) {
35: this .refObj = refObj;
36: }
37:
38: //
39: // methods
40: //
41:
42: public Object getRefObj() {
43: return refObj;
44: }
45: }
|