KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > clipbuilder > html > bean > FrameBean


1 package org.jahia.clipbuilder.html.bean;
2
3 /**
4  * Bean <---> frame tag
5  *
6  *@author Tlili Khaled
7  */

8 public class FrameBean {
9     private String JavaDoc src;
10     private String JavaDoc name;
11     private String JavaDoc id;
12     private String JavaDoc hash;
13
14
15     /**
16      * Sets the Id attribute of the FrameBean object
17      *
18      *@param id The new Id value
19      */

20     public void setId(String JavaDoc id) {
21         this.id = id;
22     }
23
24
25     /**
26      * Sets the Name attribute of the FrameBean object
27      *
28      *@param name The new Name value
29      */

30     public void setName(String JavaDoc name) {
31         this.name = name;
32     }
33
34
35     /**
36      * Sets the Src attribute of the FrameBean object
37      *
38      *@param src The new Src value
39      */

40     public void setSrc(String JavaDoc src) {
41         this.src = src;
42     }
43
44
45     /**
46      * Sets the Hash attribute of the FrameBean object
47      *
48      *@param hash The new Hash value
49      */

50     public void setHash(String JavaDoc hash) {
51         this.hash = hash;
52     }
53
54
55     /**
56      * Gets the Id attribute of the FrameBean object
57      *
58      *@return The Id value
59      */

60     public String JavaDoc getId() {
61         return id;
62     }
63
64
65     /**
66      * Gets the Name attribute of the FrameBean object
67      *
68      *@return The Name value
69      */

70     public String JavaDoc getName() {
71         return name;
72     }
73
74
75     /**
76      * Gets the Src attribute of the FrameBean object
77      *
78      *@return The Src value
79      */

80     public String JavaDoc getSrc() {
81         return src;
82     }
83
84
85     /**
86      * Gets the Hash attribute of the FrameBean object
87      *
88      *@return The Hash value
89      */

90     public String JavaDoc getHash() {
91         return hash;
92     }
93 }
94
Popular Tags