1
2
3
4
5
6
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
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
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
43 }
44
45 }