FileDocCategorySizeDatePackage
FieldFilter.javaAPI DocHibernate 3.2.5650Thu Aug 03 15:35:26 BST 2006org.hibernate.bytecode.javassist

FieldFilter

public interface FieldFilter
Contract for deciding whether fields should be read and/or write intercepted.
author
Muga Nishizawa

Fields Summary
Constructors Summary
Methods Summary
public booleanhandleRead(java.lang.String desc, java.lang.String name)
Should the given field be read intercepted?

param
desc
param
name
return
true if the given field should be read intercepted; otherwise false.

public booleanhandleWrite(java.lang.String desc, java.lang.String name)
Should the given field be write intercepted?

param
desc
param
name
return
true if the given field should be write intercepted; otherwise false.