1 17 package org.apache.ws.jaxme.sqls.impl; 18 19 import org.apache.ws.jaxme.sqls.ConstrainedStatement; 20 import org.apache.ws.jaxme.sqls.Constraint; 21 22 23 26 public abstract class ConstraintImpl implements Constraint { 27 private ConstrainedStatement constrainedStatement; 28 29 31 public ConstraintImpl(ConstrainedStatement pStatement) { 32 constrainedStatement = pStatement; 33 } 34 35 public ConstrainedStatement getConstrainedStatement() { 36 return constrainedStatement; 37 } 38 } 39 | Popular Tags |