Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.hibernate.intercept
Interface FieldInterceptor  view FieldInterceptor download FieldInterceptor.java

All Known Implementing Classes:
AbstractFieldInterceptor

public interface FieldInterceptor

Contract for field interception handlers.


Method Summary
 void clearDirty()
          Clear the internal dirty flag.
 void dirty()
          Forcefully mark the entity as being dirty.
 boolean isDirty()
          Is the entity considered dirty?
 boolean isInitialized()
          Is the entity to which we are bound completely initialized?
 boolean isInitialized(java.lang.String field)
          The the given field initialized for the entity to which we are bound?
 void setSession(org.hibernate.engine.SessionImplementor session)
          Use to associate the entity to which we are bound to the given session.
 

Method Detail

setSession

public void setSession(org.hibernate.engine.SessionImplementor session)
Use to associate the entity to which we are bound to the given session.


isInitialized

public boolean isInitialized()
Is the entity to which we are bound completely initialized?


isInitialized

public boolean isInitialized(java.lang.String field)
The the given field initialized for the entity to which we are bound?


dirty

public void dirty()
Forcefully mark the entity as being dirty.


isDirty

public boolean isDirty()
Is the entity considered dirty?


clearDirty

public void clearDirty()
Clear the internal dirty flag.