com.liferay.portlet.shopping.model
Interface ShoppingItemPriceModel

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

public interface ShoppingItemPriceModel
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 ShoppingItemPrice table in the database.

Author:
Brian Wing Shun Chan
See Also:
ShoppingItemPrice, com.liferay.portlet.shopping.model.impl.ShoppingItemPriceImpl, com.liferay.portlet.shopping.model.impl.ShoppingItemPriceModelImpl

Method Summary
 double getDiscount()
           
 long getItemId()
           
 long getItemPriceId()
           
 int getMaxQuantity()
           
 int getMinQuantity()
           
 double getPrice()
           
 long getPrimaryKey()
           
 double getShipping()
           
 int getStatus()
           
 boolean getTaxable()
           
 boolean getUseShippingFormula()
           
 boolean isTaxable()
           
 boolean isUseShippingFormula()
           
 void setDiscount(double discount)
           
 void setItemId(long itemId)
           
 void setItemPriceId(long itemPriceId)
           
 void setMaxQuantity(int maxQuantity)
           
 void setMinQuantity(int minQuantity)
           
 void setPrice(double price)
           
 void setPrimaryKey(long pk)
           
 void setShipping(double shipping)
           
 void setStatus(int status)
           
 void setTaxable(boolean taxable)
           
 void setUseShippingFormula(boolean useShippingFormula)
           
 ShoppingItemPrice 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)

getItemPriceId

long getItemPriceId()

setItemPriceId

void setItemPriceId(long itemPriceId)

getItemId

long getItemId()

setItemId

void setItemId(long itemId)

getMinQuantity

int getMinQuantity()

setMinQuantity

void setMinQuantity(int minQuantity)

getMaxQuantity

int getMaxQuantity()

setMaxQuantity

void setMaxQuantity(int maxQuantity)

getPrice

double getPrice()

setPrice

void setPrice(double price)

getDiscount

double getDiscount()

setDiscount

void setDiscount(double discount)

getTaxable

boolean getTaxable()

isTaxable

boolean isTaxable()

setTaxable

void setTaxable(boolean taxable)

getShipping

double getShipping()

setShipping

void setShipping(double shipping)

getUseShippingFormula

boolean getUseShippingFormula()

isUseShippingFormula

boolean isUseShippingFormula()

setUseShippingFormula

void setUseShippingFormula(boolean useShippingFormula)

getStatus

int getStatus()

setStatus

void setStatus(int status)

toEscapedModel

ShoppingItemPrice toEscapedModel()