com.liferay.portal.model
Interface RegionModel

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

public interface RegionModel
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 Region table in the database.

Author:
Brian Wing Shun Chan
See Also:
com.liferay.portal.service.model.Region, com.liferay.portal.service.model.impl.RegionImpl, com.liferay.portal.service.model.impl.RegionModelImpl

Method Summary
 boolean getActive()
           
 long getCountryId()
           
 java.lang.String getName()
           
 long getPrimaryKey()
           
 java.lang.String getRegionCode()
           
 long getRegionId()
           
 boolean isActive()
           
 void setActive(boolean active)
           
 void setCountryId(long countryId)
           
 void setName(java.lang.String name)
           
 void setPrimaryKey(long pk)
           
 void setRegionCode(java.lang.String regionCode)
           
 void setRegionId(long regionId)
           
 
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)

getRegionId

public long getRegionId()

setRegionId

public void setRegionId(long regionId)

getCountryId

public long getCountryId()

setCountryId

public void setCountryId(long countryId)

getRegionCode

public java.lang.String getRegionCode()

setRegionCode

public void setRegionCode(java.lang.String regionCode)

getName

public java.lang.String getName()

setName

public void setName(java.lang.String name)

getActive

public boolean getActive()

isActive

public boolean isActive()

setActive

public void setActive(boolean active)