01: /*
02: * Created on Jun 9, 2006
03: */
04: package uk.org.ponder.rsf.hibernate3;
05:
06: /** The purposes of this class is to hide from clever type inferrers
07: * (like SpringIDE) the exact type of HQLParameterQueryBean so that it will
08: * not complain when unexpected properties are set on it (actually by means
09: * of its being a WBL).
10: * @author Antranig Basman (amb26@ponder.org.uk)
11: *
12: */
13:
14: public class HPQLHider {
15: public Object getQuery() {
16: return new HQLParameterQueryBean();
17: }
18: }
|