KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > portlet > metadata > PortletModeMetaData


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.portlet.metadata;
10
11 import java.util.Map JavaDoc;
12
13 import javax.portlet.PortletMode;
14
15 public class PortletModeMetaData
16 {
17    private Map JavaDoc descriptions;
18    private PortletMode portletMode;
19
20    public PortletModeMetaData()
21    {
22    }
23
24    public Map JavaDoc getDescriptions()
25    {
26       return descriptions;
27    }
28
29    public void setDescriptions(Map JavaDoc descriptions)
30    {
31       this.descriptions = descriptions;
32    }
33
34    public PortletMode getPortletMode()
35    {
36       return portletMode;
37    }
38
39    public void setPortletMode(PortletMode portletMode)
40    {
41       this.portletMode = portletMode;
42    }
43 }
44
Popular Tags