Liferay 6.2-ce-ga5

com.liferay.portlet.expando.model
Class ExpandoTableWrapper

java.lang.Object
  extended by com.liferay.portlet.expando.model.ExpandoTableWrapper
All Implemented Interfaces:
BaseModel<ExpandoTable>, ClassedModel, ModelWrapper<ExpandoTable>, PersistedModel, TypedModel, ExpandoTable, ExpandoTableModel, Serializable, Cloneable, Comparable<ExpandoTable>

@ProviderType
public class ExpandoTableWrapper
extends Object
implements ExpandoTable, ModelWrapper<ExpandoTable>

This class is a wrapper for ExpandoTable.

See Also:
ExpandoTable, Serialized Form
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Constructor Summary
ExpandoTableWrapper(ExpandoTable expandoTable)
           
 
Method Summary
 Object clone()
          Creates a shallow clone of this model instance.
 int compareTo(ExpandoTable expandoTable)
           
 boolean equals(Object obj)
           
 String getClassName()
          Returns the fully qualified class name of this expando table.
 long getClassNameId()
          Returns the class name ID of this expando table.
 long getCompanyId()
          Returns the company ID of this expando table.
 ExpandoBridge getExpandoBridge()
          Returns the expando bridge for this model instance.
 Map<String,Object> getModelAttributes()
           
 Class<?> getModelClass()
           
 String getModelClassName()
           
 String getName()
          Returns the name of this expando table.
 long getPrimaryKey()
          Returns the primary key of this expando table.
 Serializable getPrimaryKeyObj()
          Returns the primary key of this model instance.
 long getTableId()
          Returns the table ID of this expando table.
 ExpandoTable getWrappedExpandoTable()
          Deprecated. As of 6.1.0, replaced by getWrappedModel()
 ExpandoTable getWrappedModel()
           
 int hashCode()
           
 boolean isCachedModel()
          Returns true if this model instance was retrieved from the entity cache.
 boolean isDefaultTable()
           
 boolean isEscapedModel()
          Returns true if this model instance is escaped.
 boolean isNew()
          Returns true if this model instance does not yet exist in the database.
 void persist()
          Updates this model instance in the database or adds it if it does not yet exist.
 void resetOriginalValues()
          Reset all original fields to current values.
 void setCachedModel(boolean cachedModel)
          Sets whether this model instance was retrieved from the entity cache.
 void setClassName(String className)
           
 void setClassNameId(long classNameId)
          Sets the class name ID of this expando table.
 void setCompanyId(long companyId)
          Sets the company ID of this expando table.
 void setExpandoBridgeAttributes(BaseModel<?> baseModel)
           
 void setExpandoBridgeAttributes(ExpandoBridge expandoBridge)
           
 void setExpandoBridgeAttributes(ServiceContext serviceContext)
          Sets the expando bridge attributes for this model instance to the attributes stored in the service context.
 void setModelAttributes(Map<String,Object> attributes)
           
 void setName(String name)
          Sets the name of this expando table.
 void setNew(boolean n)
          Sets whether this model instance does not yet exist in the database.
 void setPrimaryKey(long primaryKey)
          Sets the primary key of this expando table.
 void setPrimaryKeyObj(Serializable primaryKeyObj)
          Sets the primary key of this model instance.
 void setTableId(long tableId)
          Sets the table ID of this expando table.
 CacheModel<ExpandoTable> toCacheModel()
          Returns a cache model object for this entity used by entity cache.
 ExpandoTable toEscapedModel()
          Returns a copy of this entity as an escaped model instance by wrapping it with an AutoEscapeBeanHandler.
 String toString()
           
 ExpandoTable toUnescapedModel()
           
 String toXmlString()
          Returns the XML representation of this model instance.
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ExpandoTableWrapper

public ExpandoTableWrapper(ExpandoTable expandoTable)
Method Detail

getModelClass

public Class<?> getModelClass()
Specified by:
getModelClass in interface ClassedModel

getModelClassName

public String getModelClassName()
Specified by:
getModelClassName in interface ClassedModel

getModelAttributes

public Map<String,Object> getModelAttributes()
Specified by:
getModelAttributes in interface BaseModel<ExpandoTable>

setModelAttributes

public void setModelAttributes(Map<String,Object> attributes)
Specified by:
setModelAttributes in interface BaseModel<ExpandoTable>

getPrimaryKey

public long getPrimaryKey()
Returns the primary key of this expando table.

Specified by:
getPrimaryKey in interface ExpandoTableModel
Returns:
the primary key of this expando table

setPrimaryKey

public void setPrimaryKey(long primaryKey)
Sets the primary key of this expando table.

Specified by:
setPrimaryKey in interface ExpandoTableModel
Parameters:
primaryKey - the primary key of this expando table

getTableId

public long getTableId()
Returns the table ID of this expando table.

Specified by:
getTableId in interface ExpandoTableModel
Returns:
the table ID of this expando table

setTableId

public void setTableId(long tableId)
Sets the table ID of this expando table.

Specified by:
setTableId in interface ExpandoTableModel
Parameters:
tableId - the table ID of this expando table

getCompanyId

public long getCompanyId()
Returns the company ID of this expando table.

Specified by:
getCompanyId in interface ExpandoTableModel
Returns:
the company ID of this expando table

setCompanyId

public void setCompanyId(long companyId)
Sets the company ID of this expando table.

Specified by:
setCompanyId in interface ExpandoTableModel
Parameters:
companyId - the company ID of this expando table

getClassName

public String getClassName()
Returns the fully qualified class name of this expando table.

Specified by:
getClassName in interface TypedModel
Specified by:
getClassName in interface ExpandoTableModel
Returns:
the fully qualified class name of this expando table

setClassName

public void setClassName(String className)
Specified by:
setClassName in interface ExpandoTableModel

getClassNameId

public long getClassNameId()
Returns the class name ID of this expando table.

Specified by:
getClassNameId in interface TypedModel
Specified by:
getClassNameId in interface ExpandoTableModel
Returns:
the class name ID of this expando table

setClassNameId

public void setClassNameId(long classNameId)
Sets the class name ID of this expando table.

Specified by:
setClassNameId in interface TypedModel
Specified by:
setClassNameId in interface ExpandoTableModel
Parameters:
classNameId - the class name ID of this expando table

getName

public String getName()
Returns the name of this expando table.

Specified by:
getName in interface ExpandoTableModel
Returns:
the name of this expando table

setName

public void setName(String name)
Sets the name of this expando table.

Specified by:
setName in interface ExpandoTableModel
Parameters:
name - the name of this expando table

isNew

public boolean isNew()
Description copied from interface: BaseModel
Returns true if this model instance does not yet exist in the database.

Specified by:
isNew in interface BaseModel<ExpandoTable>
Specified by:
isNew in interface ExpandoTableModel
Returns:
true if this model instance does not yet exist in the database; false otherwise

setNew

public void setNew(boolean n)
Description copied from interface: BaseModel
Sets whether this model instance does not yet exist in the database.

Specified by:
setNew in interface BaseModel<ExpandoTable>
Specified by:
setNew in interface ExpandoTableModel
Parameters:
n - whether this model instance does not yet exist in the database

isCachedModel

public boolean isCachedModel()
Description copied from interface: BaseModel
Returns true if this model instance was retrieved from the entity cache.

Specified by:
isCachedModel in interface BaseModel<ExpandoTable>
Specified by:
isCachedModel in interface ExpandoTableModel
Returns:
true if this model instance was retrieved from the entity cache; false otherwise
See Also:
BaseModel.setCachedModel(boolean)

setCachedModel

public void setCachedModel(boolean cachedModel)
Description copied from interface: BaseModel
Sets whether this model instance was retrieved from the entity cache.

Specified by:
setCachedModel in interface BaseModel<ExpandoTable>
Specified by:
setCachedModel in interface ExpandoTableModel
Parameters:
cachedModel - whether this model instance was retrieved from the entity cache
See Also:
EntityCache

isEscapedModel

public boolean isEscapedModel()
Description copied from interface: BaseModel
Returns true if this model instance is escaped.

Specified by:
isEscapedModel in interface BaseModel<ExpandoTable>
Specified by:
isEscapedModel in interface ExpandoTableModel
Returns:
true if this model instance is escaped; false otherwise

getPrimaryKeyObj

public Serializable getPrimaryKeyObj()
Description copied from interface: BaseModel
Returns the primary key of this model instance.

Specified by:
getPrimaryKeyObj in interface BaseModel<ExpandoTable>
Specified by:
getPrimaryKeyObj in interface ClassedModel
Specified by:
getPrimaryKeyObj in interface ExpandoTableModel
Returns:
the primary key of this model instance

setPrimaryKeyObj

public void setPrimaryKeyObj(Serializable primaryKeyObj)
Description copied from interface: BaseModel
Sets the primary key of this model instance.

Specified by:
setPrimaryKeyObj in interface BaseModel<ExpandoTable>
Specified by:
setPrimaryKeyObj in interface ClassedModel
Specified by:
setPrimaryKeyObj in interface ExpandoTableModel
Parameters:
primaryKeyObj - the primary key of this model instance

getExpandoBridge

public ExpandoBridge getExpandoBridge()
Description copied from interface: BaseModel
Returns the expando bridge for this model instance.

Specified by:
getExpandoBridge in interface BaseModel<ExpandoTable>
Specified by:
getExpandoBridge in interface ClassedModel
Specified by:
getExpandoBridge in interface ExpandoTableModel
Returns:
the expando bridge for this model instance

setExpandoBridgeAttributes

public void setExpandoBridgeAttributes(BaseModel<?> baseModel)
Specified by:
setExpandoBridgeAttributes in interface BaseModel<ExpandoTable>
Specified by:
setExpandoBridgeAttributes in interface ExpandoTableModel

setExpandoBridgeAttributes

public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge)
Specified by:
setExpandoBridgeAttributes in interface BaseModel<ExpandoTable>
Specified by:
setExpandoBridgeAttributes in interface ExpandoTableModel

setExpandoBridgeAttributes

public void setExpandoBridgeAttributes(ServiceContext serviceContext)
Description copied from interface: BaseModel
Sets the expando bridge attributes for this model instance to the attributes stored in the service context.

Specified by:
setExpandoBridgeAttributes in interface BaseModel<ExpandoTable>
Specified by:
setExpandoBridgeAttributes in interface ExpandoTableModel
Parameters:
serviceContext - the service context to be applied
See Also:
ServiceContext.getExpandoBridgeAttributes( )

clone

public Object clone()
Description copied from interface: BaseModel
Creates a shallow clone of this model instance.

Specified by:
clone in interface BaseModel<ExpandoTable>
Specified by:
clone in interface ExpandoTableModel
Overrides:
clone in class Object
Returns:
the shallow clone of this model instance

compareTo

public int compareTo(ExpandoTable expandoTable)
Specified by:
compareTo in interface ExpandoTableModel
Specified by:
compareTo in interface Comparable<ExpandoTable>

hashCode

public int hashCode()
Specified by:
hashCode in interface ExpandoTableModel
Overrides:
hashCode in class Object

toCacheModel

public CacheModel<ExpandoTable> toCacheModel()
Description copied from interface: BaseModel
Returns a cache model object for this entity used by entity cache.

Specified by:
toCacheModel in interface BaseModel<ExpandoTable>
Specified by:
toCacheModel in interface ExpandoTableModel
Returns:
the cache model object

toEscapedModel

public ExpandoTable toEscapedModel()
Description copied from interface: BaseModel
Returns a copy of this entity as an escaped model instance by wrapping it with an AutoEscapeBeanHandler.

Specified by:
toEscapedModel in interface BaseModel<ExpandoTable>
Specified by:
toEscapedModel in interface ExpandoTableModel
Returns:
the escaped model instance
See Also:
AutoEscapeBeanHandler

toUnescapedModel

public ExpandoTable toUnescapedModel()
Specified by:
toUnescapedModel in interface BaseModel<ExpandoTable>
Specified by:
toUnescapedModel in interface ExpandoTableModel

toString

public String toString()
Specified by:
toString in interface ExpandoTableModel
Overrides:
toString in class Object

toXmlString

public String toXmlString()
Description copied from interface: BaseModel
Returns the XML representation of this model instance.

Specified by:
toXmlString in interface BaseModel<ExpandoTable>
Specified by:
toXmlString in interface ExpandoTableModel
Returns:
the XML representation of this model instance

persist

public void persist()
             throws SystemException
Description copied from interface: PersistedModel
Updates this model instance in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Specified by:
persist in interface PersistedModel
Throws:
SystemException - if a system exception occurred

isDefaultTable

public boolean isDefaultTable()
Specified by:
isDefaultTable in interface ExpandoTable

equals

public boolean equals(Object obj)
Overrides:
equals in class Object

getWrappedExpandoTable

public ExpandoTable getWrappedExpandoTable()
Deprecated. As of 6.1.0, replaced by getWrappedModel()


getWrappedModel

public ExpandoTable getWrappedModel()
Specified by:
getWrappedModel in interface ModelWrapper<ExpandoTable>

resetOriginalValues

public void resetOriginalValues()
Description copied from interface: BaseModel
Reset all original fields to current values.

Specified by:
resetOriginalValues in interface BaseModel<ExpandoTable>

Liferay 6.2-ce-ga5