Name: chT40241 Date: 03/18/98
RemoteField::getModifiers() does not support all the modifiers that it should. I have examined the code and found the following are not supported, but should be because the class RemoteField represents both methods as well as data fields.
M_SYNCHRONIZED
M_NATIVE
M_ABSTRACT
Here is the suggested code which will fix this problem. It is to be added as the last statements in RemoteField::getModifiers()
if ((access & M_SYNCHRONIZED) == M_SYNCHRONIZED)
s = s.concat("synchronized ");
if ((access & M_NATIVE) == M_NATIVE)
s = s.concat("native ");
if ((access & M_ABSTRACT) == M_ABSTRACT)
s = s.concat("abstract ");
======================================================================