Tim Ellison wrote:
> [EMAIL PROTECTED] wrote:
> <snip>
>> - public void setAccessibleName(final String s) {
>> - throw new UnsupportedOperationException("Not implemented");
>> + @Override
>> + public void setAccessibleName(String s) {
>> + throw new NotImplementedException();
>> }
> <snip>
>
> Nathan, I think you have to change the method signature to, for example,
>
> public void setAccessibleName(String s) throws NotImplementedException {
> throw new NotImplementedException();
> }
>
> for Japi to recognize it.
Are you sure? that seems wrong as it would alter the API signature.
--
Stefano.