1 22 23 package org.enhydra.kelp.common.importer; 24 class MakeItemData { 26 private String item = null; 27 private String optionList = null; 28 29 protected MakeItemData(String i, String o) { 30 item = i; 31 optionList = o; 32 } 33 34 public String getItem() { 35 return item; 36 } 37 38 public String getOptionList() { 39 return optionList; 40 } 41 42 public String toString() { 43 StringBuffer buf = new StringBuffer (); 44 45 buf.append("item: " + getItem()); buf.append(" - "); buf.append("optionList: " + getOptionList()); return buf.toString(); 49 } 50 51 } 52 | Popular Tags |