create changelog entry
[debian/openrocket] / core / src / net / sf / openrocket / util / Invalidatable.java
1 package net.sf.openrocket.util;
2
3 /**
4  * An object that can be invalidated (in some sense of the word).  After calling the
5  * invalidate method the object should not be used any more and it may enforce
6  * disusage for certain methods.
7  * 
8  * @author Sampo Niskanen <sampo.niskanen@iki.fi>
9  */
10 public interface Invalidatable {
11         
12         /**
13          * Invalidate this object.
14          */
15         public void invalidate();
16         
17 }