01: /**
02: * Objective Database Abstraction Layer (ODAL)
03: * Copyright (c) 2004, The ODAL Development Group
04: * All rights reserved.
05: * For definition of the ODAL Development Group please refer to LICENCE.txt file
06: *
07: * Distributable under LGPL license.
08: * See terms of license at gnu.org.
09: */package com.completex.objective.components.persistency.meta;
10:
11: /**
12: * @author Gennady Krizhevsky
13: */
14: public class MetaChild implements Referencing {
15: protected MetaRef ref = new MetaRef();
16:
17: public MetaRef getBase() {
18: return ref;
19: }
20:
21: public void setBase(MetaRef ref) {
22: this.ref = ref;
23: }
24: }
|