01: package net.sourceforge.jaxor.example.domain;
02:
03: import net.sourceforge.jaxor.api.JaxorContext;
04:
05: /**
06: * Created By: Mike
07: * Date: Oct 27, 2003
08: * Time: 7:21:11 PM
09: *
10: * Last Checkin: $Author: mrettig $
11: * Date: $Date: 2004/01/21 03:55:06 $
12: * Revision: $Revision: 1.2 $
13: */
14: public class CustomerFinderImpl extends CustomerFinderBase {
15:
16: public CustomerFinderImpl(JaxorContext conn) {
17: super (conn);
18: }
19:
20: public CustomerList selectNothing() {
21: return new CustomerList();
22: }
23: }
|