TextPanel.saveAs

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

TextPanel.saveAs

Olivier Maury-2
Dear,

I used to run one of my own plugin which writes into the text panel.
Now, it doesn't run anymore, this error is raised:

java.lang.NoSuchMethodError: ij.text.TextPanel.saveAs(Ljava/lang/String;)V


Do you have some idea?

Thanks

Olivier Maury
Reply | Threaded
Open this post in threaded view
|

Re: TextPanel.saveAs

dscho
Hi,

On Wed, 17 Jan 2007, Olivier Maury wrote:

> I used to run one of my own plugin which writes into the text panel.
> Now, it doesn't run anymore, this error is raised:
>
> java.lang.NoSuchMethodError: ij.text.TextPanel.saveAs(Ljava/lang/String;)V

The signature changed in v1.37h (released 2 June 2006) from "void
saveAs(String)" to "boolean saveAs(String)" (the "V" indicates return
value "void").

So, you have to recompile.

Hth,
Dscho