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

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

public class CafeBoardArticles
extends java.lang.Object

Cafe 특정 게시판의 게시글의 List 를 제공 한다.

Author:
DAUM

Constructor Summary
CafeBoardArticles()
          Class 인스턴스화
CafeBoardArticles(int totalSize, int totalNewSize)
          Class 인스턴스화
 
Method Summary
 CafeArticle getArticle(int index)
          article 객체를 가져온다.
 java.util.List<CafeBoardArticle> getArticles()
          articles List 객체를 가져온다.
 int getTotalNewSize()
          total new size 변수를 가져온다.
 int getTotalSize()
          total size 변수를 가져온다.
 void setArticle(CafeBoardArticle article)
          article 객체를 입력한다.
 void setArticles(java.util.List<CafeBoardArticle> articles)
          articles 객체를 입력한다.
 void setTotalNewSize(int totalNewSize)
          total new size 변수를 입력한다.
 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

CafeBoardArticles

public CafeBoardArticles()
Class 인스턴스화


CafeBoardArticles

public CafeBoardArticles(int totalSize,
                         int totalNewSize)
Class 인스턴스화

Parameters:
totalSize - the total size
totalNewSize - the total new size
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

getTotalNewSize

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

Returns:
the total new size

setTotalNewSize

public void setTotalNewSize(int totalNewSize)
total new size 변수를 입력한다.

Parameters:
totalNewSize - the new total new size

getArticles

public java.util.List<CafeBoardArticle> getArticles()
articles List 객체를 가져온다.

Returns:
the articles

setArticles

public void setArticles(java.util.List<CafeBoardArticle> articles)
articles 객체를 입력한다.

Parameters:
articles - the new articles

getArticle

public CafeArticle getArticle(int index)
article 객체를 가져온다.

Parameters:
index - the index
Returns:
the article

setArticle

public void setArticle(CafeBoardArticle article)
article 객체를 입력한다.

Parameters:
article - the new article

toString

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