View Javadoc

1   /*
2    * joey and its relative products are published under the terms
3    * of the Apache Software License.
4    * 
5    * Created on 2004/06/07 1:11:41
6    */
7   package org.asyrinx.joey.om;
8   
9   /***
10   * @author akima
11   */
12  public class AllRecordCondition extends AbstractSearchCondition {
13  
14  	/***
15  	 * 
16  	 */
17  	public AllRecordCondition(String fromTableName) {
18  		super();
19  		this.fromTableName = fromTableName;
20  	}
21  
22  	private final String fromTableName;
23  
24  	/* (non-Javadoc)
25  	 * @see org.asyrinx.joey.om.AbstractSearchCondition#prepare()
26  	 */
27  	protected void prepare() {
28  		addFrom(fromTableName);
29  	}
30  
31  }