KickJava   Java API By Example, From Geeks To Geeks.

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


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.WindowState;
14
15 public class WindowStateMetaData
16 {
17    private Map JavaDoc descriptions;
18    private WindowState windowState;
19
20    public WindowStateMetaData()
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 WindowState getWindowState()
35    {
36       return windowState;
37    }
38
39    public void setWindowState(WindowState windowState)
40    {
41       this.windowState = windowState;
42    }
43 }
44
Popular Tags