2009/05/20 - Apache Shale has been retired.
For more information, please explore the Attic.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package org.apache.shale.clay.config.beans;
22
23 import java.io.Serializable;
24
25 /***
26 * <p>Abstract class that provides a <code>description</code> property
27 * that is populated from the clay configuration file
28 * when design time tool support is enabled.</p>
29 *
30 */
31 public abstract class AbstractBean implements Serializable {
32 /***
33 * <p>Metadata description provided in the clay configuration.</p>
34 */
35 private String description = null;
36
37 /***
38 * <p>Returns the <code>description</code> of the bean.</p>
39 *
40 * @return description of the config bean
41 */
42 public String getDescription() {
43 return description;
44 }
45
46 /***
47 * <p>Sets the <code>description</code> of the bean.</p>
48 *
49 * @param description of the config bean
50 */
51 public void setDescription(String description) {
52 this.description = description;
53 }
54
55 }