KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > caucho > ejb > gen > MapClass


1 /*
2  * Copyright (c) 1998-2006 Caucho Technology -- all rights reserved
3  *
4  * This file is part of Resin(R) Open Source
5  *
6  * Each copy or derived work must preserve the copyright notice and this
7  * notice unmodified.
8  *
9  * 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.gen;
30
31 import com.caucho.ejb.cfg.CmrMap;
32 import com.caucho.ejb.cfg.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 JavaDoc;
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,
48              String JavaDoc className)
49   {
50     _map = map;
51
52     setClassName(className);
53     setSuperClassName("com.caucho.ejb.entity.CmpMapImpl");
54   }
55
56   /**
57    * Generates the list's class content.
58    */

59   public void generateClassContent(JavaWriter out)
60     throws IOException JavaDoc
61   {
62     generateConstructor(out);
63     
64     super.generateClassContent(out);
65   }
66
67   /**
68    * Generates the list's class content.
69    */

70   public void generateConstructor(JavaWriter out)
71     throws IOException JavaDoc
72   {
73     EjbEntityBean sourceBean = _map.getBean();
74     String JavaDoc sourceType = sourceBean.getLocal().getName();
75
76     out.println();
77     out.println("Bean _bean;");
78     out.println(sourceType + " _beanLocal;");
79     
80     out.println();
81     out.println("public " + getClassName() + "(Bean bean, com.caucho.amber.AmberQuery query)");
82     out.println("{");
83     out.pushDepth();
84     out.println("_bean = bean;");
85     out.println("_beanLocal = bean._ejb_context._viewLocal;");
86     out.println("fill(query);");
87     out.popDepth();
88     out.println("}");
89   }
90 }
91
Popular Tags