1 17 package org.apache.ws.jaxme.sqls.impl; 18 19 import org.apache.ws.jaxme.sqls.CombinedConstraint; 20 import org.apache.ws.jaxme.sqls.ConstrainedStatement; 21 import org.apache.ws.jaxme.sqls.ObjectFactory; 22 import org.apache.ws.jaxme.sqls.SQLFactory; 23 24 25 28 public abstract class ConstrainedStatementImpl extends StatementImpl implements ConstrainedStatement { 29 private CombinedConstraint where = null; 30 31 protected ConstrainedStatementImpl(SQLFactory pFactory) { 32 super(pFactory); 33 } 34 35 public CombinedConstraint getWhere() { 36 if (where == null) { 37 ObjectFactory f = getSQLFactory().getObjectFactory(); 38 where = f.newCombinedConstraint(this, CombinedConstraint.Type.AND); 39 } 40 return where; 41 } 42 } 43 | Popular Tags |