net.sf.hibernate4gwt.pojo.base
Interface ILazyPojo

All Known Implementing Classes:
LazyPojo, LazyPojo

public interface ILazyPojo

Lazy property handler interface. All the Hibernate POJO must implements this interface.

Author:
bruno.marchesson

Method Summary
 void addLazyProperty(java.lang.String property)
          Add a lazy property
 java.util.List getLazyProperties()
           
 java.lang.String getLazyString()
          Debug method : write the declared lazy properties
 boolean isLazyProperty(java.lang.String property)
          Indicates if the property is lazy or not
 void removeLazyProperty(java.lang.String property)
          Remove a lazy property
 void setLazyProperties(java.util.List properties)
           
 

Method Detail

addLazyProperty

void addLazyProperty(java.lang.String property)
Add a lazy property


removeLazyProperty

void removeLazyProperty(java.lang.String property)
Remove a lazy property


isLazyProperty

boolean isLazyProperty(java.lang.String property)
Indicates if the property is lazy or not

Parameters:
property -
Returns:

getLazyString

java.lang.String getLazyString()
Debug method : write the declared lazy properties

Returns:

getLazyProperties

java.util.List getLazyProperties()
Returns:
the lazy properties

setLazyProperties

void setLazyProperties(java.util.List properties)
Parameters:
properties - the lazy properties to set