Eclipseplugins
All Classes Functions Variables Pages
PaPreference.java
1 package com.proalpha.pds.paconnector;
2 
3 public class PaPreference {
4 
8  public String getKey() {
9  return key;
10  }
11 
15  public void setKey(String key) {
16  this.key = key;
17  }
18 
22  public String getValue() {
23  return value;
24  }
25 
29  public void setValue(String value) {
30  this.value = value;
31  }
32 
33  private String key;
34  private String value;
35 
36  public PaPreference(String key, String value) {
37  super();
38  this.key = key;
39  this.value = value;
40  }
41 
42 }