public interface FieldFilter
Modifier and Type | Method and Description |
---|---|
boolean |
handleRead(String desc,
String name)
Should the given field be read intercepted?
|
boolean |
handleReadAccess(String fieldOwnerClassName,
String fieldName)
Should read access to the given field be intercepted?
|
boolean |
handleWrite(String desc,
String name)
Should the given field be write intercepted?
|
boolean |
handleWriteAccess(String fieldOwnerClassName,
String fieldName)
Should write access to the given field be intercepted?
|
boolean handleRead(String desc, String name)
desc
- The field descriptorname
- The field nameboolean handleWrite(String desc, String name)
desc
- The field descriptorname
- The field nameboolean handleReadAccess(String fieldOwnerClassName, String fieldName)
fieldOwnerClassName
- The class where the field being accessed is definedfieldName
- The name of the field being accessedboolean handleWriteAccess(String fieldOwnerClassName, String fieldName)
fieldOwnerClassName
- The class where the field being accessed is definedfieldName
- The name of the field being accessedCopyright © 2001-2013 Red Hat, Inc. All Rights Reserved.