View Javadoc

1   /*
2    * Copyright 2004-2006 the Seasar Foundation and the Others.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *     http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 
13   * either express or implied. See the License for the specific language
14   * governing permissions and limitations under the License.
15   */
16  package org.seasar.tuigwaa.view;
17  
18  import org.seasar.tuigwaa.cms.core.Page;
19  
20  public class PageComponent {
21  	
22  	private Page mainPage;
23  
24  	private Page topMenuPage;
25  	
26  	private Page leftMenuPage;
27  	
28  	private Page rightMenuPage;
29  	
30  	private Page headerPage;
31  	
32  	private Page footerPage;
33  	
34  	public Page getFooterPage() {
35  		return footerPage;
36  	}
37  
38  	public void setFooterPage(Page footerPage) {
39  		this.footerPage = footerPage;
40  	}
41  
42  	public Page getHeaderPage() {
43  		return headerPage;
44  	}
45  
46  	public void setHeaderPage(Page headerPage) {
47  		this.headerPage = headerPage;
48  	}
49  
50  	public Page getLeftMenuPage() {
51  		return leftMenuPage;
52  	}
53  
54  	public void setLeftMenuPage(Page leftMenuPage) {
55  		this.leftMenuPage = leftMenuPage;
56  	}
57  
58  	public Page getMainPage() {
59  		return mainPage;
60  	}
61  
62  	public void setMainPage(Page mainPage) {
63  		this.mainPage = mainPage;
64  	}
65  
66  	public Page getRightMenuPage() {
67  		return rightMenuPage;
68  	}
69  
70  	public void setRightMenuPage(Page rightMenuPage) {
71  		this.rightMenuPage = rightMenuPage;
72  	}
73  
74  	public Page getTopMenuPage() {
75  		return topMenuPage;
76  	}
77  
78  	public void setTopMenuPage(Page topMenuPage) {
79  		this.topMenuPage = topMenuPage;
80  	}
81  }