package com.jat.business;
/**
* <p>Title: JAT</p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2004 -2005 Stefano Fratini (stefano.fratini@gmail.com)</p>
* <p>Distributed under the terms of the GNU Lesser General Public License, v2.1 or later</p>
* @author stf
* @version 1.2
* @since 1.1
*/
public class BusinessObjectFactoryImpl extends BusinessObjectFactory {
protected BusinessObjectList getBusinessObjectList(String dataSourceName, BusinessObjectPropertyList properties) {
return new BusinessObjectListImpl(dataSourceName, properties);
}
/** @link dependency
* @stereotype instantiate*/
/*# BusinessObjectListImpl lnkBusinessObjectListImpl; */
}
|