org.jcoderz.commons.connector.file
Interface Closeable


public interface Closeable

A Closeable is a source or destination of data that can be closed. The close method is invoked to release resources that the object is holding (such as open files).


Method Summary
 void close()
          Closes this stream and releases any system resources associated with it.
 

Method Detail

close

void close()
           throws IOException
Closes this stream and releases any system resources associated with it.

Throws:
IOException - Thrown if an I/O error occurs.


Copyright 2007 The jCoderZ Project.