01: package com.jat.business;
02:
03: /**
04: * <p>Title: JAT</p>
05: * <p>Description: </p>
06: * <p>Copyright: Copyright (c) 2004 -2005 Stefano Fratini (stefano.fratini@gmail.com)</p>
07: * <p>Distributed under the terms of the GNU Lesser General Public License, v2.1 or later</p>
08: * @author stf
09: * @version 1.2
10: * @since 1.1
11: */
12:
13: public class BusinessObjectListImpl extends BusinessObjectList {
14:
15: public BusinessObjectListImpl(String dataSourceName) {
16: super (dataSourceName);
17: }
18:
19: public BusinessObjectListImpl(String dataSourceName,
20: BusinessObjectPropertyList props) {
21: super (dataSourceName, props);
22: }
23:
24: protected BusinessObject getBusinessObject(
25: BusinessObjectProperties props) {
26: return new BusinessObjectImpl(this .getDataSourceName(), props);
27: }
28:
29: /** @link dependency
30: * @stereotype instantiate*/
31: /*# BusinessObjectImpl lnkBusinessObjectImpl; */
32: }
|