byucc.edif
Interface Trimable

All Known Implementing Classes:
EdifCell, EdifCellInterface, EdifLibrary, EdifLibraryManager

public interface Trimable

This interface is used for classes that can "trim" the data structures alloacted by the class. These classes will trim the data structures to preserve memory and reduce any unneeded memory overhead.

Classes that should probably implement this interface: EdifNet, (anything with a collection or ArrayList).

Version:
$Id: Trimable.java,v 1.2 2004/04/20 22:23:56 wirthlin Exp $
Author:
Mike Wirthlin

Method Summary
 void trimToSize()
          This method is used to trim the size of all "trimable" data structures within the Object.
 

Method Detail

trimToSize

public void trimToSize()
This method is used to trim the size of all "trimable" data structures within the Object. This method often involves the "trimToSize" method provided by many of the standard Java Collection data structures.