agg.util
Interface Disposable

All Known Subinterfaces:
AttrContext, AttrViewSetting, Morphism
All Known Implementing Classes:
AtomConstraint, CondTuple, ContextCore, ContextView, DeclTuple, ExtObservable, GraGra, Graph, LoneTuple, MaskedViewSetting, Match, NACStarMorphism, OpenViewSetting, OrdinaryMorphism, OrdinarySubMorphism, PACStarMorphism, Rule, SlotSequence, SubGraGra, SubGraph, SubMatch, SubRule, TupleObject, TypeGraph, ValueTuple, VarTuple, ViewSetting

public interface Disposable

Disposable is an interface that is implemented by classes that need explicit finalization in order to become accessible to garbage collection. The contract is as follows: The caller of the constructor of a disposable object is responsible for calling its dispose() method when the object is no longer needed.


Method Summary
 void dispose()
          Prepare myself for garbage collection.
 

Method Detail

dispose

void dispose()
Prepare myself for garbage collection.