..
..
class aBC.ZipList dependent
method ziplist( z = Rexx )
do
zf = ZipFile( z )
enum = zf.entries()
catch IOException
say "Error - "
loop while enum.hasMoreElements()
e = enum.nextElement()
say e
end
finally
zf.close()
end
return
..
..
The a/m class receives an filename obtained from a JFileChooser, the
following error is received during compilation and the highlighted error is
in the method ziplist( z = Rexx ) instrucction.
"due to a forward reference to this method, the following exceptions must be
explicitly specified as a SIGNALS list:
IOException"
the command calling is as shown.:
..
..
parent.ziplist( archive2open )
..
..
Any help is appreciated.
Enrique
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to
majordomo@...
with the following message in the body of the note
unsubscribe ibm-netrexx <e-mail address>