com.liferay.portlet.ratings.model
Interface RatingsStatsModel

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

public interface RatingsStatsModel
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 RatingsStats table in the database.

Author:
Brian Wing Shun Chan
See Also:
com.liferay.portlet.ratings.service.model.RatingsStats, com.liferay.portlet.ratings.service.model.impl.RatingsStatsImpl, com.liferay.portlet.ratings.service.model.impl.RatingsStatsModelImpl

Method Summary
 double getAverageScore()
           
 long getClassNameId()
           
 long getClassPK()
           
 long getPrimaryKey()
           
 long getStatsId()
           
 int getTotalEntries()
           
 double getTotalScore()
           
 void setAverageScore(double averageScore)
           
 void setClassNameId(long classNameId)
           
 void setClassPK(long classPK)
           
 void setPrimaryKey(long pk)
           
 void setStatsId(long statsId)
           
 void setTotalEntries(int totalEntries)
           
 void setTotalScore(double totalScore)
           
 
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)

getStatsId

public long getStatsId()

setStatsId

public void setStatsId(long statsId)

getClassNameId

public long getClassNameId()

setClassNameId

public void setClassNameId(long classNameId)

getClassPK

public long getClassPK()

setClassPK

public void setClassPK(long classPK)

getTotalEntries

public int getTotalEntries()

setTotalEntries

public void setTotalEntries(int totalEntries)

getTotalScore

public double getTotalScore()

setTotalScore

public void setTotalScore(double totalScore)

getAverageScore

public double getAverageScore()

setAverageScore

public void setAverageScore(double averageScore)