com.liferay.portlet.polls.model
Interface PollsChoiceModel

All Superinterfaces:
BaseModel, java.lang.Cloneable, java.lang.Comparable, java.io.Serializable
All Known Subinterfaces:
PollsChoice

public interface PollsChoiceModel
extends BaseModel

View Source

ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

This interface is a model that represents the PollsChoice table in the database.

Author:
Brian Wing Shun Chan
See Also:
com.liferay.portlet.polls.service.model.PollsChoice, com.liferay.portlet.polls.service.model.impl.PollsChoiceImpl, com.liferay.portlet.polls.service.model.impl.PollsChoiceModelImpl

Method Summary
 long getChoiceId()
           
 java.lang.String getDescription()
           
 java.lang.String getName()
           
 long getPrimaryKey()
           
 long getQuestionId()
           
 void setChoiceId(long choiceId)
           
 void setDescription(java.lang.String description)
           
 void setName(java.lang.String name)
           
 void setPrimaryKey(long pk)
           
 void setQuestionId(long questionId)
           
 
Methods inherited from interface com.liferay.portal.model.BaseModel
clone, getPrimaryKeyObj, isNew, setNew
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getPrimaryKey

public long getPrimaryKey()

setPrimaryKey

public void setPrimaryKey(long pk)

getChoiceId

public long getChoiceId()

setChoiceId

public void setChoiceId(long choiceId)

getQuestionId

public long getQuestionId()

setQuestionId

public void setQuestionId(long questionId)

getName

public java.lang.String getName()

setName

public void setName(java.lang.String name)

getDescription

public java.lang.String getDescription()

setDescription

public void setDescription(java.lang.String description)