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.tools.generators;
10:
11: import com.completex.objective.components.persistency.meta.MetaModel;
12:
13: import java.util.Map;
14:
15: /**
16: * @author Gennady Krizhevsky
17: */
18: public interface ModelTransformer {
19:
20: public static final String KEY = "transform";
21:
22: void configure(Map config);
23:
24: void transformModel(MetaModel model);
25: }
|