Package com.teamdev.jxbrowser
Interface Closeable
- All Superinterfaces:
AutoCloseable
An object that may hold resources until it is closed.
-
Method Summary
-
Method Details
-
close
void close()Closes this object and releases all resources associated with it. If the object is already closed then invoking this method has no effect.Implementers of this interface are strongly advised to not have the
closemethod throw any exception. It is supposed that the close operation cannot fail. Only in case of an unexpected error the implementers can throw a runtime exception.- Specified by:
closein interfaceAutoCloseable
-
isClosed
boolean isClosed()Returnstrueif the current object is closed.
-