1
2
3
4
5 package org.asyrinx.joey.tapestry.util;
6
7 import org.asyrinx.joey.tapestry.components.stative.BaseVisit;
8
9 /***
10 *
11 **/
12 public class BaseTabVisit extends BaseVisit {
13 /***
14 * The name of the page for which the corresponding tab
15 * should be visibly active.
16 *
17 **/
18
19 private String activeTabName = "Home";
20
21 /***
22 * If true, then a detailed report about the request is appended
23 * to the bottom of each page.
24 *
25 **/
26
27 public String getActiveTabName() {
28 return activeTabName;
29 }
30
31 public void setActiveTabName(String value) {
32 this.activeTabName = value;
33 }
34
35 }