KickJava   Java API By Example, From Geeks To Geeks.

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


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 public class ParameterMetaData
14 {
15    private String JavaDoc name;
16    private String JavaDoc value;
17    private Map JavaDoc descriptions;
18
19    public ParameterMetaData()
20    {
21    }
22
23    public String JavaDoc getName()
24    {
25       return name;
26    }
27
28    public void setName(String JavaDoc name)
29    {
30       this.name = name;
31    }
32
33    public String JavaDoc getValue()
34    {
35       return value;
36    }
37
38    public void setValue(String JavaDoc value)
39    {
40       this.value = value;
41    }
42
43    public Map JavaDoc getDescriptions()
44    {
45       return descriptions;
46    }
47
48    public void setDescriptions(Map JavaDoc descriptions)
49    {
50       this.descriptions = descriptions;
51    }
52 }
53
Popular Tags