Hello,
I have been looking at the source code, and trying to
understand it. Here is some code I am lookiing at:
----Begin of some src from ActionEvent.java ------
package org.apache.turbine.modules;
public abstract class ActionEvent extends Action
{
............
/** the arguments to pass to the method to execute */
private static final Object[] args = new Object[1];
.............
}
---- End of src ----------------
The static member field args get used in the method
doEvents(Rundata). Now, my question is should this
field (args) be *static*? Will it not cuase a
synchronization problem? I am new at Reflection, so
please bear with me.
Thanks ...
-shovon-
__________________________________________________
Do You Yahoo!?
Send instant messages & get email alerts with Yahoo! Messenger.
http://im.yahoo.com/
------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Problems?: [EMAIL PROTECTED]