> Hi, anyone have article about java.lang.reflect.Proxy and proxy dynamic
> ?
>
> thanks
You do not need to know about proxy. You need to know how to Google for
information.
'Explore the Dynamic Proxy API' Use dynamic proxies to bring strong
typing to abstract data types
http://www.javaworld.com/javaworld/jw-11-2000/jw-1110-proxy.html
Under the Hood: java.lang.reflect.Proxy
http://java.sys-con.com/read/36844.htm
Using java.lang.reflect.Proxy
http://www.javalobby.org/java/forums/t18631.html
Java Reflection in Action: Using Java's Dynamic Proxy
http://www.webreference.com/internet/reflection/
Thanks in Advance...
IchBin, Pocono Lake, Pa, USA
http://weconsultants.servebeer.com/JHackerAppManager
__________________________________________________________________________
'If there is one, Knowledge is the "Fountain of Youth"'
-William E. Taylor, Regular Guy (1952-)
Mandar Amdekar - 02 Jan 2006 20:03 GMT
Dynamic proxies are the closest thing that is natively supported, to
injecting new bytecode into the system. Given an interface, it defines
new classes at runtime. They're great for implementing the proxy
pattern, as the name suggests, e.g. in a local vs remote type scenario.