net.sf.cglib.transform.impl

Class AbstractInterceptFieldCallback

public class AbstractInterceptFieldCallback extends Object implements InterceptFieldCallback

Author: Chris Nokleberg

Method Summary
booleanreadBoolean(Object obj, String name, boolean oldValue)
bytereadByte(Object obj, String name, byte oldValue)
charreadChar(Object obj, String name, char oldValue)
doublereadDouble(Object obj, String name, double oldValue)
floatreadFloat(Object obj, String name, float oldValue)
intreadInt(Object obj, String name, int oldValue)
longreadLong(Object obj, String name, long oldValue)
ObjectreadObject(Object obj, String name, Object oldValue)
shortreadShort(Object obj, String name, short oldValue)
booleanwriteBoolean(Object obj, String name, boolean oldValue, boolean newValue)
bytewriteByte(Object obj, String name, byte oldValue, byte newValue)
charwriteChar(Object obj, String name, char oldValue, char newValue)
doublewriteDouble(Object obj, String name, double oldValue, double newValue)
floatwriteFloat(Object obj, String name, float oldValue, float newValue)
intwriteInt(Object obj, String name, int oldValue, int newValue)
longwriteLong(Object obj, String name, long oldValue, long newValue)
ObjectwriteObject(Object obj, String name, Object oldValue, Object newValue)
shortwriteShort(Object obj, String name, short oldValue, short newValue)

Method Detail

readBoolean

public boolean readBoolean(Object obj, String name, boolean oldValue)

readByte

public byte readByte(Object obj, String name, byte oldValue)

readChar

public char readChar(Object obj, String name, char oldValue)

readDouble

public double readDouble(Object obj, String name, double oldValue)

readFloat

public float readFloat(Object obj, String name, float oldValue)

readInt

public int readInt(Object obj, String name, int oldValue)

readLong

public long readLong(Object obj, String name, long oldValue)

readObject

public Object readObject(Object obj, String name, Object oldValue)

readShort

public short readShort(Object obj, String name, short oldValue)

writeBoolean

public boolean writeBoolean(Object obj, String name, boolean oldValue, boolean newValue)

writeByte

public byte writeByte(Object obj, String name, byte oldValue, byte newValue)

writeChar

public char writeChar(Object obj, String name, char oldValue, char newValue)

writeDouble

public double writeDouble(Object obj, String name, double oldValue, double newValue)

writeFloat

public float writeFloat(Object obj, String name, float oldValue, float newValue)

writeInt

public int writeInt(Object obj, String name, int oldValue, int newValue)

writeLong

public long writeLong(Object obj, String name, long oldValue, long newValue)

writeObject

public Object writeObject(Object obj, String name, Object oldValue, Object newValue)

writeShort

public short writeShort(Object obj, String name, short oldValue, short newValue)
Copyright (c) 2001 - Apache Software Foundation