create changelog entry
[debian/openrocket] / core / src / net / sf / openrocket / gui / Resettable.java
1 package net.sf.openrocket.gui;
2
3 /**
4  * An interface for GUI elements with a resettable model.  The resetModel() method in 
5  * this interface resets the model to some default model, releasing the old model 
6  * listening connections.
7  * 
8  * Some components that don't have a settable model simply release the current model.
9  * These components cannot therefore be reused after calling resetModel().
10  * 
11  * @author Sampo Niskanen <sampo.niskanen@iki.fi>
12  */
13 public interface Resettable {
14         public void resetModel();
15 }