package org.opengroupware.jope.foundation;

/*
 * NSDisposable
 * 
 * Similiar to Closable, but more generic. Closable throws an IOException which
 * makes it useless for stuff like EOAccess.
 */
public interface NSDisposable {

  public void dispose();

}
