KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > alfresco > repo > dictionary > M2DataType


1 /*
2  * Copyright (C) 2005 Alfresco, Inc.
3  *
4  * Licensed under the Mozilla Public License version 1.1
5  * with a permitted attribution clause. You may obtain a
6  * copy of the License at
7  *
8  * http://www.alfresco.org/legal/license.txt
9  *
10  * Unless required by applicable law or agreed to in writing,
11  * software distributed under the License is distributed on an
12  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
13  * either express or implied. See the License for the specific
14  * language governing permissions and limitations under the
15  * License.
16  */

17 package org.alfresco.repo.dictionary;
18
19
20 /**
21  * Property Type Definition
22  *
23  * @author David Caruana
24  *
25  */

26 public class M2DataType
27 {
28     private String JavaDoc name = null;
29     private String JavaDoc title = null;
30     private String JavaDoc description = null;
31     private String JavaDoc analyserClassName = null;
32     private String JavaDoc javaClassName = null;
33     
34     
35     /*package*/ M2DataType()
36     {
37         super();
38     }
39     
40
41     public String JavaDoc getName()
42     {
43         return name;
44     }
45     
46     
47     public void setName(String JavaDoc name)
48     {
49         this.name = name;
50     }
51
52     
53     public String JavaDoc getTitle()
54     {
55         return title;
56     }
57     
58     
59     public void setTitle(String JavaDoc title)
60     {
61         this.title = title;
62     }
63     
64     
65     public String JavaDoc getDescription()
66     {
67         return description;
68     }
69     
70     
71     public void setDescription(String JavaDoc description)
72     {
73         this.description = description;
74     }
75     
76     
77     public String JavaDoc getAnalyserClassName()
78     {
79         return analyserClassName;
80     }
81     
82     
83     public void setAnalyserClassName(String JavaDoc analyserClassName)
84     {
85         this.analyserClassName = analyserClassName;;
86     }
87
88     
89     public String JavaDoc getJavaClassName()
90     {
91         return javaClassName;
92     }
93     
94     
95     public void setJavaClassName(String JavaDoc javaClassName)
96     {
97         this.javaClassName = javaClassName;;
98     }
99     
100 }
101
Popular Tags