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:
PollsChoice, com.liferay.portlet.polls.model.impl.PollsChoiceImpl, com.liferay.portlet.polls.model.impl.PollsChoiceModelImpl

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

Method Detail

getPrimaryKey

long getPrimaryKey()

setPrimaryKey

void setPrimaryKey(long pk)

getUuid

java.lang.String getUuid()

setUuid

void setUuid(java.lang.String uuid)

getChoiceId

long getChoiceId()

setChoiceId

void setChoiceId(long choiceId)

getQuestionId

long getQuestionId()

setQuestionId

void setQuestionId(long questionId)

getName

java.lang.String getName()

setName

void setName(java.lang.String name)

getDescription

java.lang.String getDescription()

setDescription

void setDescription(java.lang.String description)

toEscapedModel

PollsChoice toEscapedModel()