1 16 package net.sf.cglib.transform.impl; 17 18 21 public interface InterceptFieldCallback { 22 23 int writeInt(Object obj, String name, int oldValue, int newValue); 24 char writeChar(Object obj, String name, char oldValue, char newValue); 25 byte writeByte(Object obj, String name, byte oldValue, byte newValue); 26 boolean writeBoolean(Object obj, String name, boolean oldValue, boolean newValue); 27 short writeShort(Object obj, String name, short oldValue, short newValue); 28 float writeFloat(Object obj, String name, float oldValue, float newValue); 29 double writeDouble(Object obj, String name, double oldValue, double newValue); 30 long writeLong(Object obj, String name, long oldValue, long newValue); 31 Object writeObject(Object obj, String name, Object oldValue, Object newValue); 32 33 int readInt(Object obj, String name, int oldValue); 34 char readChar(Object obj, String name, char oldValue); 35 byte readByte(Object obj, String name, byte oldValue); 36 boolean readBoolean(Object obj, String name, boolean oldValue); 37 short readShort(Object obj, String name, short oldValue); 38 float readFloat(Object obj, String name, float oldValue); 39 double readDouble(Object obj, String name, double oldValue); 40 long readLong(Object obj, String name, long oldValue); 41 Object readObject(Object obj, String name, Object oldValue); 42 } 43 | Popular Tags |