KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > server > theme > PageHolder


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  *****************************************/

9 package org.jboss.portal.server.theme;
10
11 /**
12  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
13  * @version $Revision: 1.1 $
14  */

15 public class PageHolder
16 {
17    private RegionSet regions;
18
19    public PageHolder(RegionSet regions)
20    {
21       this.regions = regions;
22    }
23
24    public RegionSet getRegions()
25    {
26       return regions;
27    }
28 }
29
Popular Tags