KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > core > xml > RefElement


1 // You can redistribute this software and/or modify it under the terms of
2
// the Ozone Core 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: RefElement.java,v 1.2 2002/08/27 08:32:26 per_nyfelt Exp $
8

9 package org.ozoneDB.core.xml;
10
11 /**
12  * This class saves all attributes of the refElement.
13  *
14  * @version $Revision: 1.2 $
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 JavaDoc refObj;
26
27     //
28
// construcor
29
//
30

31     /**
32      * @param refObj
33      */

34     public RefElement(Object JavaDoc refObj) {
35         this.refObj = refObj;
36     }
37
38     //
39
// methods
40
//
41

42     public Object JavaDoc getRefObj() {
43         return refObj;
44     }
45 }
46
47
Popular Tags