getDescription
getDescription()
getDescription 메소드는 Campaign에 정의된 오퍼 설명을 리턴합니다.
리턴 값
getDescription 메소드는 문자열을 리턴합니다.
다음 예는오퍼 설명을 인쇄합니다.
for(Offer offer : offerList.getRecommendedOffers())
{
// print offer
System.out.println("Offer Description:"+offer.getDescription());
}