~ubuntu-branches/ubuntu/wily/libhibernate3-java/wily-proposed

« back to all changes in this revision

Viewing changes to src/org/hibernate/criterion/NotEmptyExpression.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-10-14 14:43:34 UTC
  • Revision ID: james.westby@ubuntu.com-20071014144334-eamc8i0q10gs1aro
Tags: upstream-3.2.5
ImportĀ upstreamĀ versionĀ 3.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//$Id: NotEmptyExpression.java 6661 2005-05-03 20:12:20Z steveebersole $
 
2
package org.hibernate.criterion;
 
3
 
 
4
/**
 
5
 * @author Gavin King
 
6
 */
 
7
public class NotEmptyExpression extends AbstractEmptinessExpression implements Criterion {
 
8
 
 
9
        protected NotEmptyExpression(String propertyName) {
 
10
                super( propertyName );
 
11
        }
 
12
 
 
13
        protected boolean excludeEmpty() {
 
14
                return true;
 
15
        }
 
16
 
 
17
}