View Javadoc
1   package org.kuali.ole.select.document.krad;
2   
3   import org.kuali.ole.select.businessobject.OlePurchaseOrderItem;
4   import org.kuali.rice.krad.uif.component.Component;
5   
6   public class OleInvoicePOCurrentItemsLine {
7   
8   	private String lineId;
9   	private String bindPath;
10  	private OlePurchaseOrderItem poItem;
11  	private Component rowDetails;
12  
13  	public String getLineId() {
14  		return lineId;
15  	}
16  
17  	public void setLineId(String lineId) {
18  		this.lineId = lineId;
19  	}
20  
21  	public String getBindPath() {
22  		return bindPath;
23  	}
24  
25  	public void setBindPath(String bindPath) {
26  		this.bindPath = bindPath;
27  	}
28  
29  	public OlePurchaseOrderItem getPoItem() {
30  		return poItem;
31  	}
32  
33  	public void setPoItem(OlePurchaseOrderItem poItem) {
34  		this.poItem = poItem;
35  	}
36  
37  	public Component getRowDetails() {
38  		return rowDetails;
39  	}
40  
41  	public void setRowDetails(Component rowDetails) {
42  		this.rowDetails = rowDetails;
43  	}
44  
45  	@Override
46  	public String toString() {
47  		return "OleInvoicePOCurrentItemsLine [lineId=" + lineId + ", bindPath="
48  				+ bindPath + ", poItem=" + poItem + "]";
49  	}
50  
51  }
52