create changelog entry
[debian/openrocket] / core / src / net / sf / openrocket / gui / main / DocumentSelectionListener.java
1 package net.sf.openrocket.gui.main;
2
3 public interface DocumentSelectionListener {
4
5         public static final int COMPONENT_SELECTION_CHANGE = 1;
6         public static final int SIMULATION_SELECTION_CHANGE = 2;
7         
8         /**
9          * Called when the selection changes.
10          * 
11          * @param changeType    a bitmask of the type of change.
12          */
13         public void valueChanged(int changeType);
14         
15 }