net.daum.dna.api.vo.cafe
Class CafeRecentArticles

java.lang.Object
  extended by net.daum.dna.api.vo.cafe.CafeRecentArticles

public class CafeRecentArticles
extends java.lang.Object

Cafe의 최신 글 List 를 담는 Class.

Author:
DAUM

Constructor Summary
CafeRecentArticles()
          Class 인스턴스화
CafeRecentArticles(int totalSize, java.util.List<CafeRecentArticle> cafeRecentArticles)
          Class 인스턴스화
 
Method Summary
 CafeRecentArticle getRecentArticle(int index)
          recent article 객체를 가져온다.
 java.util.List<CafeRecentArticle> getRecentArticles()
          recent articles 객체를 가져온다.
 int getTotalSize()
          total size 변수를 가져온다.
 void setRecentArticle(CafeRecentArticle cafeRecentArticle)
          recent article 객체를 입력한다.
 void setRecentArticles(java.util.List<CafeRecentArticle> cafeRecentArticles)
          recent articles 객체를 입력한다.
 void setTotalSize(int totalSize)
          total size 변수를 입력한다.
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CafeRecentArticles

public CafeRecentArticles()
Class 인스턴스화


CafeRecentArticles

public CafeRecentArticles(int totalSize,
                          java.util.List<CafeRecentArticle> cafeRecentArticles)
Class 인스턴스화

Parameters:
totalSize - the total size
cafeRecentArticles - the recent articles
Method Detail

getTotalSize

public int getTotalSize()
total size 변수를 가져온다.

Returns:
the total size

setTotalSize

public void setTotalSize(int totalSize)
total size 변수를 입력한다.

Parameters:
totalSize - the new total size

getRecentArticles

public java.util.List<CafeRecentArticle> getRecentArticles()
recent articles 객체를 가져온다.

Returns:
the recent articles

setRecentArticles

public void setRecentArticles(java.util.List<CafeRecentArticle> cafeRecentArticles)
recent articles 객체를 입력한다.

Parameters:
cafeRecentArticles - the new recent articles

getRecentArticle

public CafeRecentArticle getRecentArticle(int index)
recent article 객체를 가져온다.

Parameters:
index - the index
Returns:
the recent article

setRecentArticle

public void setRecentArticle(CafeRecentArticle cafeRecentArticle)
recent article 객체를 입력한다.

Parameters:
cafeRecentArticle - the new recent article

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object