KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > improve > struts > taglib > layout > crumb > CrumbImpl


1 package fr.improve.struts.taglib.layout.crumb;
2
3 public class CrumbImpl implements Crumb {
4     private String JavaDoc target;
5     private String JavaDoc key;
6     private String JavaDoc link;
7     private String JavaDoc bundle;
8     /**
9      * Gets the target.
10      * @return Returns a String
11      */

12     public String JavaDoc getTarget() {
13         return target;
14     }
15
16     /**
17      * Sets the target.
18      * @param target The target to set
19      */

20     public void setTarget(String JavaDoc target) {
21         this.target = target;
22     }
23
24     /**
25      * Gets the key.
26      * @return Returns a String
27      */

28     public String JavaDoc getKey() {
29         return key;
30     }
31
32     /**
33      * Sets the key.
34      * @param key The key to set
35      */

36     public void setKey(String JavaDoc key) {
37         this.key = key;
38     }
39
40     /**
41      * Gets the link.
42      * @return Returns a String
43      */

44     public String JavaDoc getLink() {
45         return link;
46     }
47
48     /**
49      * Sets the link.
50      * @param link The link to set
51      */

52     public void setLink(String JavaDoc link) {
53         this.link = link;
54     }
55
56     /**
57      * @return Returns the bundle.
58      */

59     public String JavaDoc getBundle() {
60         return bundle;
61     }
62
63     /**
64      * @param bundle The bundle to set.
65      */

66     public void setBundle(String JavaDoc bundle) {
67         this.bundle = bundle;
68     }
69
70 }
71
Popular Tags