View Javadoc

1   /*
2    * Joey and its relative products are published under the terms
3    * of the Apache Software License.
4    */
5   /*
6    * Created on 2004/02/01
7    */
8   package org.asyrinx.joey.tapestry.components.stative;
9   
10  import org.apache.tapestry.IRequestCycle;
11  
12  /***
13   * @author akima
14   */
15  public abstract class BaseSelectPage extends BaseListPage {
16  
17  	/***
18  	 * 
19  	 */
20  	public BaseSelectPage() {
21  		super();
22  	}
23  
24  	/***
25  	 * @see org.asyrinx.brownie.tapestry.components.stative.BaseListPage#selectObj(org.apache.tapestry.IRequestCycle)
26  	 */
27  	public void selectObj(IRequestCycle cycle) {
28  		//do nothing
29  	}
30  
31  	/***
32  	 * @see org.asyrinx.brownie.tapestry.components.stative.BaseListPage#createObj(org.apache.tapestry.IRequestCycle)
33  	 */
34  	public void createObj(IRequestCycle cycle) {
35  		//do nothing
36  	}
37  
38  	/***
39  	 * @see org.asyrinx.brownie.tapestry.components.stative.BaseListPage#deleteObj(org.apache.tapestry.IRequestCycle)
40  	 */
41  	public void deleteObj(IRequestCycle cycle) {
42  		//do nothing
43  	}
44  
45  }