|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ShoppingItemPriceModel
The base model interface for the ShoppingItemPrice service. Represents a row in the "ShoppingItemPrice" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation ShoppingItemPriceModelImpl
exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in ShoppingItemPriceImpl
.
Never modify or reference this interface directly. All methods that expect a shopping item price model instance should use the ShoppingItemPrice
interface instead.
ShoppingItemPrice
,
ShoppingItemPriceImpl
,
ShoppingItemPriceModelImpl
Method Summary | |
---|---|
Object |
clone()
Creates a shallow clone of this model instance. |
int |
compareTo(ShoppingItemPrice shoppingItemPrice)
|
double |
getDiscount()
Gets the discount of this shopping item price. |
ExpandoBridge |
getExpandoBridge()
Gets the expando bridge for this model instance. |
long |
getItemId()
Gets the item id of this shopping item price. |
long |
getItemPriceId()
Gets the item price id of this shopping item price. |
int |
getMaxQuantity()
Gets the max quantity of this shopping item price. |
int |
getMinQuantity()
Gets the min quantity of this shopping item price. |
double |
getPrice()
Gets the price of this shopping item price. |
long |
getPrimaryKey()
Gets the primary key of this shopping item price. |
Serializable |
getPrimaryKeyObj()
Gets the primary key of this model instance. |
double |
getShipping()
Gets the shipping of this shopping item price. |
int |
getStatus()
Gets the status of this shopping item price. |
boolean |
getTaxable()
Gets the taxable of this shopping item price. |
boolean |
getUseShippingFormula()
Gets the use shipping formula of this shopping item price. |
int |
hashCode()
|
boolean |
isCachedModel()
Determines if this model instance was retrieved from the entity cache. |
boolean |
isEscapedModel()
Determines if this model instance is escaped. |
boolean |
isNew()
Determines if this model instance does not yet exist in the database. |
boolean |
isTaxable()
Determines whether this shopping item price is taxable. |
boolean |
isUseShippingFormula()
Determines whether this shopping item price is use shipping formula. |
void |
setCachedModel(boolean cachedModel)
Sets whether this model instance was retrieved from the entity cache. |
void |
setDiscount(double discount)
Sets the discount of this shopping item price. |
void |
setEscapedModel(boolean escapedModel)
Sets whether this model instance is escaped, meaning that all strings returned from getter methods are HTML safe. |
void |
setExpandoBridgeAttributes(ServiceContext serviceContext)
Sets the expando bridge attributes for this model instance to the attributes stored in the service context. |
void |
setItemId(long itemId)
Sets the item id of this shopping item price. |
void |
setItemPriceId(long itemPriceId)
Sets the item price id of this shopping item price. |
void |
setMaxQuantity(int maxQuantity)
Sets the max quantity of this shopping item price. |
void |
setMinQuantity(int minQuantity)
Sets the min quantity of this shopping item price. |
void |
setNew(boolean n)
Sets whether this model instance does not yet exist in the database. |
void |
setPrice(double price)
Sets the price of this shopping item price. |
void |
setPrimaryKey(long pk)
Sets the primary key of this shopping item price |
void |
setShipping(double shipping)
Sets the shipping of this shopping item price. |
void |
setStatus(int status)
Sets the status of this shopping item price. |
void |
setTaxable(boolean taxable)
Sets whether this {$entity.humanName} is taxable. |
void |
setUseShippingFormula(boolean useShippingFormula)
Sets whether this {$entity.humanName} is use shipping formula. |
ShoppingItemPrice |
toEscapedModel()
Gets a copy of this shopping item price as an escaped model instance by wrapping it with an AutoEscapeBeanHandler . |
String |
toString()
|
String |
toXmlString()
Gets the XML representation of this model instance. |
Method Detail |
---|
long getPrimaryKey()
void setPrimaryKey(long pk)
pk
- the primary key of this shopping item pricelong getItemPriceId()
void setItemPriceId(long itemPriceId)
itemPriceId
- the item price id of this shopping item pricelong getItemId()
void setItemId(long itemId)
itemId
- the item id of this shopping item priceint getMinQuantity()
void setMinQuantity(int minQuantity)
minQuantity
- the min quantity of this shopping item priceint getMaxQuantity()
void setMaxQuantity(int maxQuantity)
maxQuantity
- the max quantity of this shopping item pricedouble getPrice()
void setPrice(double price)
price
- the price of this shopping item pricedouble getDiscount()
void setDiscount(double discount)
discount
- the discount of this shopping item priceboolean getTaxable()
boolean isTaxable()
void setTaxable(boolean taxable)
taxable
- the taxable of this shopping item pricedouble getShipping()
void setShipping(double shipping)
shipping
- the shipping of this shopping item priceboolean getUseShippingFormula()
boolean isUseShippingFormula()
void setUseShippingFormula(boolean useShippingFormula)
useShippingFormula
- the use shipping formula of this shopping item priceint getStatus()
void setStatus(int status)
status
- the status of this shopping item priceShoppingItemPrice toEscapedModel()
AutoEscapeBeanHandler
.
AutoEscapeBeanHandler
boolean isNew()
BaseModel
isNew
in interface BaseModel<ShoppingItemPrice>
true
if this model instance does not yet exist in
the database; false
otherwisevoid setNew(boolean n)
BaseModel
setNew
in interface BaseModel<ShoppingItemPrice>
n
- whether this model instance does not yet exist in the databaseboolean isCachedModel()
BaseModel
isCachedModel
in interface BaseModel<ShoppingItemPrice>
true
if this model instance was retrieved from the
entity cache; false
otherwiseBaseModel.setCachedModel(boolean)
void setCachedModel(boolean cachedModel)
BaseModel
setCachedModel
in interface BaseModel<ShoppingItemPrice>
cachedModel
- whether this model instance was retrieved from the
entity cacheEntityCache
boolean isEscapedModel()
BaseModel
isEscapedModel
in interface BaseModel<ShoppingItemPrice>
true
if this model instance is escaped;
false
otherwiseBaseModel.setEscapedModel(boolean)
void setEscapedModel(boolean escapedModel)
BaseModel
A model instance can be made escaped by wrapping it with an HTML auto
escape handler using its toEscapedModel
method. For example,
UserModel.toEscapedModel()
.
setEscapedModel
in interface BaseModel<ShoppingItemPrice>
escapedModel
- whether this model instance is escapedAutoEscapeBeanHandler
Serializable getPrimaryKeyObj()
BaseModel
getPrimaryKeyObj
in interface BaseModel<ShoppingItemPrice>
ExpandoBridge getExpandoBridge()
BaseModel
getExpandoBridge
in interface BaseModel<ShoppingItemPrice>
void setExpandoBridgeAttributes(ServiceContext serviceContext)
BaseModel
setExpandoBridgeAttributes
in interface BaseModel<ShoppingItemPrice>
serviceContext
- the service context to retrieve the expando bridge
attributes fromServiceContext.getExpandoBridgeAttributes(
)
Object clone()
BaseModel
clone
in interface BaseModel<ShoppingItemPrice>
int compareTo(ShoppingItemPrice shoppingItemPrice)
compareTo
in interface Comparable<ShoppingItemPrice>
int hashCode()
hashCode
in class Object
String toString()
toString
in class Object
String toXmlString()
BaseModel
toXmlString
in interface BaseModel<ShoppingItemPrice>
|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |