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: import com.completex.objective.components.persistency.Mappable;
12:
13: import java.util.Map;
14:
15: /**
16: * Under construction
17: *
18: * @author Gennady Krizhevsky
19: */
20: public class MetaDelegateTransformer implements Mappable {
21:
22: public void fromMap(Map map) {
23: }
24:
25: public Map toMap() {
26: return null;
27: }
28:
29: }
|