KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > xb > binding > metadata > MapEntryMetaData


1 /*
2   * JBoss, Home of Professional Open Source
3   * Copyright 2005, JBoss Inc., and individual contributors as indicated
4   * by the @authors tag. See the copyright.txt in the distribution for a
5   * full listing of individual contributors.
6   *
7   * This is free software; you can redistribute it and/or modify it
8   * under the terms of the GNU Lesser General Public License as
9   * published by the Free Software Foundation; either version 2.1 of
10   * the License, or (at your option) any later version.
11   *
12   * This software is distributed in the hope that it will be useful,
13   * but WITHOUT ANY WARRANTY; without even the implied warranty of
14   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15   * Lesser General Public License for more details.
16   *
17   * You should have received a copy of the GNU Lesser General Public
18   * License along with this software; if not, write to the Free
19   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21   */

22 package org.jboss.xb.binding.metadata;
23
24 /**
25  * @author <a HREF="mailto:alex@jboss.org">Alexey Loubyansky</a>
26  * @version <tt>$Revision: 1958 $</tt>
27  */

28 public class MapEntryMetaData
29 {
30    private String JavaDoc impl;
31    private String JavaDoc getKeyMethod;
32    private String JavaDoc setKeyMethod;
33    private String JavaDoc getValueMethod;
34    private String JavaDoc setValueMethod;
35    private String JavaDoc valueType;
36    private boolean nonNullValue;
37
38    public String JavaDoc getImpl()
39    {
40       return impl;
41    }
42
43    public void setImpl(String JavaDoc impl)
44    {
45       this.impl = impl;
46    }
47
48    public String JavaDoc getGetKeyMethod()
49    {
50       return getKeyMethod;
51    }
52
53    public void setGetKeyMethod(String JavaDoc getKeyMethod)
54    {
55       this.getKeyMethod = getKeyMethod;
56    }
57
58    public String JavaDoc getSetKeyMethod()
59    {
60       return setKeyMethod;
61    }
62
63    public void setSetKeyMethod(String JavaDoc setKeyMethod)
64    {
65       this.setKeyMethod = setKeyMethod;
66    }
67
68    public String JavaDoc getGetValueMethod()
69    {
70       return getValueMethod;
71    }
72
73    public void setGetValueMethod(String JavaDoc getValueMethod)
74    {
75       this.getValueMethod = getValueMethod;
76    }
77
78    public String JavaDoc getSetValueMethod()
79    {
80       return setValueMethod;
81    }
82
83    public void setSetValueMethod(String JavaDoc setValueMethod)
84    {
85       this.setValueMethod = setValueMethod;
86    }
87
88    public String JavaDoc getValueType()
89    {
90       return valueType;
91    }
92
93    public void setValueType(String JavaDoc valueType)
94    {
95       this.valueType = valueType;
96    }
97
98    public boolean isNonNullValue()
99    {
100       return nonNullValue;
101    }
102
103    public void setNonNullValue(boolean nonNullValue)
104    {
105       this.nonNullValue = nonNullValue;
106    }
107 }
108
Popular Tags