com.liferay.portal.model
Interface ImageModel

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

public interface ImageModel
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 Image table in the database.

Author:
Brian Wing Shun Chan
See Also:
com.liferay.portal.service.model.Image, com.liferay.portal.service.model.impl.ImageImpl, com.liferay.portal.service.model.impl.ImageModelImpl

Method Summary
 int getHeight()
           
 long getImageId()
           
 java.util.Date getModifiedDate()
           
 long getPrimaryKey()
           
 int getSize()
           
 java.lang.String getText()
           
 java.lang.String getType()
           
 int getWidth()
           
 void setHeight(int height)
           
 void setImageId(long imageId)
           
 void setModifiedDate(java.util.Date modifiedDate)
           
 void setPrimaryKey(long pk)
           
 void setSize(int size)
           
 void setText(java.lang.String text)
           
 void setType(java.lang.String type)
           
 void setWidth(int width)
           
 
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)

getImageId

public long getImageId()

setImageId

public void setImageId(long imageId)

getModifiedDate

public java.util.Date getModifiedDate()

setModifiedDate

public void setModifiedDate(java.util.Date modifiedDate)

getText

public java.lang.String getText()

setText

public void setText(java.lang.String text)

getType

public java.lang.String getType()

setType

public void setType(java.lang.String type)

getHeight

public int getHeight()

setHeight

public void setHeight(int height)

getWidth

public int getWidth()

setWidth

public void setWidth(int width)

getSize

public int getSize()

setSize

public void setSize(int size)