01: /*
02: * Copyright (c) 1998-2008 Caucho Technology -- all rights reserved
03: *
04: * This file is part of Resin(R) Open Source
05: *
06: * Each copy or derived work must preserve the copyright notice and this
07: * notice unmodified.
08: *
09: * Resin Open Source is free software; you can redistribute it and/or modify
10: * it under the terms of the GNU General Public License as published by
11: * the Free Software Foundation; either version 2 of the License, or
12: * (at your option) any later version.
13: *
14: * Resin Open Source is distributed in the hope that it will be useful,
15: * but WITHOUT ANY WARRANTY; without even the implied warranty of
16: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, or any warranty
17: * of NON-INFRINGEMENT. See the GNU General Public License for more
18: * details.
19: *
20: * You should have received a copy of the GNU General Public License
21: * along with Resin Open Source; if not, write to the
22: * Free SoftwareFoundation, Inc.
23: * 59 Temple Place, Suite 330
24: * Boston, MA 02111-1307 USA
25: *
26: * @author Scott Ferguson
27: */
28:
29: package com.caucho.ejb.gen21;
30:
31: import com.caucho.ejb.cfg21.CmrMap;
32: import com.caucho.ejb.cfg21.EjbEntityBean;
33: import com.caucho.java.JavaWriter;
34: import com.caucho.java.gen.BaseClass;
35: import com.caucho.util.L10N;
36:
37: import java.io.IOException;
38:
39: /**
40: * Generates the skeleton for an Amber-based entity bean.
41: */
42: public class MapClass extends BaseClass {
43: private final static L10N L = new L10N(MapClass.class);
44:
45: private CmrMap _map;
46:
47: public MapClass(CmrMap map, String className) {
48: _map = map;
49:
50: setClassName(className);
51: setSuperClassName("com.caucho.ejb.entity.CmpMapImpl");
52: }
53:
54: /**
55: * Generates the list's class content.
56: */
57: public void generateClassContent(JavaWriter out) throws IOException {
58: generateConstructor(out);
59:
60: super .generateClassContent(out);
61: }
62:
63: /**
64: * Generates the list's class content.
65: */
66: public void generateConstructor(JavaWriter out) throws IOException {
67: EjbEntityBean sourceBean = _map.getBean();
68: String sourceType = sourceBean.getLocal().getName();
69:
70: out.println();
71: out.println("Bean _bean;");
72: out.println(sourceType + " _beanLocal;");
73:
74: out.println();
75: out.println("public " + getClassName()
76: + "(Bean bean, com.caucho.amber.AmberQuery query)");
77: out.println("{");
78: out.pushDepth();
79: out.println("_bean = bean;");
80: out.println("_beanLocal = bean._ejb_context._viewLocal;");
81: out.println("fill(query);");
82: out.popDepth();
83: out.println("}");
84: }
85: }
|