I noticed this:
in icefaces 1.8.2 plugin for Netbeans 6.5 design time libraries we have the following signature (the file is icefaces-comps.jar):
Code:
public void setProgressListener(MethodExpression _progressListener)
for the InputFile class (but inherited from InputFileBase)
while in runtime libraries (the ones that get deployed) we have
Code:
public void setProgressListener(MethodBinding binding)
which is directly in InputFile class
So if you use the first in your sources, it compiles but then you get a methodnotfound exception when running, if you try and use the second you cannot even compile of course
this is blocking for my delopment
how is this?
thanks
Mauro