KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > cintoo > messages > bundle > xml > Property


1 package cintoo.messages.bundle.xml;
2
3 public class Property {
4   private String JavaDoc key;
5   private String JavaDoc value;
6
7   public String JavaDoc getKey() {
8     return key;
9   }
10
11   public void setKey(String JavaDoc key) {
12     this.key = key;
13   }
14
15   public String JavaDoc getValue() {
16     return value;
17   }
18
19   public void setValue(String JavaDoc value) {
20     this.value = value;
21   }
22 }
23
Popular Tags