1 package com.instantbank.collections.ach; 2 3 4 public class CompanySystemView { 5 6 CompanySystemDO csDO = null; 7 String desc = null; 8 9 10 public CompanySystemView(CompanySystemDO theCs) { 11 setCompanySystemDO(theCs); 12 } 13 14 15 public CompanySystemView(CompanySystemDO theCs, String desc) { 16 setCompanySystemDO(theCs); 17 setDescription(desc); 18 } 19 20 21 public CompanySystemDO getCompanySystemDO() { 22 return csDO; 23 } 24 25 26 public String getDescription() { 27 return desc; 28 } 29 30 31 public void setCompanySystemDO(CompanySystemDO arg) { 32 csDO = arg; 33 } 34 35 36 public void setDescription(String arg) { 37 desc = arg; 38 } 39 40 41 public String toString() { 42 return "[" + csDO.toString() + '|' + desc + "]"; 43 } 44 } 45