1 4 package com.sslexplorer.properties; 5 6 public class Pair { 7 Object value; 8 9 String label; 10 11 public Pair(Object value, String label) { 12 this.value = value; 13 this.label = label; 14 } 15 16 public Object getValue() { 17 return value; 18 } 19 20 public String getLabel() { 21 return label; 22 } 23 24 public void setValue(Object value) { 25 this.value = value; 26 } 27 28 public String toString() { 29 return "pair[label=" + label + ",value=" + value + "]"; 30 } 31 } | Popular Tags |