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

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

public class CafeBoard
extends java.lang.Object

각 게시판의 정보를 가지고 있는 Class.

Author:
DAUM

Constructor Summary
CafeBoard()
          Class 인스턴스화
CafeBoard(java.lang.String boardId, java.lang.String name, boolean hasNewChild, java.lang.String boardType, boolean display, boolean anonymous)
          Class 인스턴스화
 
Method Summary
 java.lang.String getBoardId()
          board id 변수를 입력한다.
 java.lang.String getBoardType()
          board type 변수를 불러온다.
 java.lang.String getName()
          name 변수를 불러온다.
 boolean isAnonymous()
          익명 게시판 여부를 알아낸다.
 boolean isDisplay()
          게시판 감춤 여부를 알아낸다.
 boolean isHasNewChild()
          새글의 존재 여부를 알아낸다.
 void setAnonymous(boolean anonymous)
          익명 게시판 여부를 지정한다.
 void setBoardId(java.lang.String boardId)
          board id 변수를 불러온다.
 void setBoardType(java.lang.String boardType)
          board type 변수를 입력한다.
 void setDisplay(boolean display)
          게시판 감춤 여부를 지정한다.
 void setHasNewChild(boolean hasNewChild)
          새글의 존재 여부를 지정한다.
 void setName(java.lang.String name)
          name 변수를 입력한다.
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CafeBoard

public CafeBoard()
Class 인스턴스화


CafeBoard

public CafeBoard(java.lang.String boardId,
                 java.lang.String name,
                 boolean hasNewChild,
                 java.lang.String boardType,
                 boolean display,
                 boolean anonymous)
Class 인스턴스화

Parameters:
boardId - the board id
name - the name
hasNewChild - the has new child
boardType - the board type
display - the display
anonymous - the anonymous
Method Detail

getBoardId

public java.lang.String getBoardId()
board id 변수를 입력한다.

Returns:
the board id

setBoardId

public void setBoardId(java.lang.String boardId)
board id 변수를 불러온다.

Parameters:
boardId - the new board id

getName

public java.lang.String getName()
name 변수를 불러온다.

Returns:
the name

setName

public void setName(java.lang.String name)
name 변수를 입력한다.

Parameters:
name - the new name

isHasNewChild

public boolean isHasNewChild()
새글의 존재 여부를 알아낸다.

Returns:
true, if is checks for new child

setHasNewChild

public void setHasNewChild(boolean hasNewChild)
새글의 존재 여부를 지정한다.

Parameters:
hasNewChild - the new checks for new child

getBoardType

public java.lang.String getBoardType()
board type 변수를 불러온다.

Returns:
the board type

setBoardType

public void setBoardType(java.lang.String boardType)
board type 변수를 입력한다.

Parameters:
boardType - the new board type

isDisplay

public boolean isDisplay()
게시판 감춤 여부를 알아낸다.

Returns:
true, if is display

setDisplay

public void setDisplay(boolean display)
게시판 감춤 여부를 지정한다.

Parameters:
display - the new display

isAnonymous

public boolean isAnonymous()
익명 게시판 여부를 알아낸다.

Returns:
true, if is anonymous

setAnonymous

public void setAnonymous(boolean anonymous)
익명 게시판 여부를 지정한다.

Parameters:
anonymous - the new anonymous

toString

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