From: <one...@us...> - 2003-03-29 04:09:25
|
Update of /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/mapping In directory sc8-pr-cvs1:/tmp/cvs-serv947/hibernate/mapping Modified Files: Value.java Log Message: * fixed a bug in SQLExpression * fixed a bug in Expression.ge() * improved proxy handling * fixed problems with select new * reworked import mechanism * added <any> mappings Index: Value.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/mapping/Value.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Value.java 27 Jan 2003 12:51:50 -0000 1.9 --- Value.java 29 Mar 2003 04:08:47 -0000 1.10 *************** *** 152,155 **** --- 152,159 ---- this.nullValue = nullValue; } + + public boolean isAny() { + return false; + } } |