use of edu.cornell.kfs.module.purap.businessobject.IWantItem in project cu-kfs by CU-CommunityApps.
the class IWantDocumentForm method getAndResetNewIWantItemLine.
/**
* Returns the new IWant Item Line and resets it to null.
*
* @return the new IWant Item Line.
*/
public IWantItem getAndResetNewIWantItemLine() {
IWantItem aIWantItem = getNewIWantItemLine();
setNewIWantItemLine(new IWantItem());
return aIWantItem;
}
Aggregations