Good catch. But I was skeptical of this particular class. I couldn't
find the class JTable.AccessibleJTable in the javadoc and I couldn't
find any uses of this class. Am I just a little crazy, anyone else see
this? I was still doing a little research on this class.

Note, I did do the right thing on the "print" methods added to JTable.

-Nathan

On 11/23/06, Alexey Petrenko <[EMAIL PROTECTED]> wrote:
Right!

2006/11/23, Tim Ellison <[EMAIL PROTECTED]>:
> [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.
>
> Regards,
> Tim
>
>
> --
>
> Tim Ellison ([EMAIL PROTECTED])
> IBM Java technology centre, UK.
>

Reply via email to