GT-2895 global/public syms + more

This commit is contained in:
ghizard 2019-06-04 07:28:18 -04:00
parent 455d100a55
commit 26a36ab643
216 changed files with 1939 additions and 840 deletions

View file

@ -24,19 +24,18 @@ import ghidra.util.bean.opteditor.OptionsVetoException;
*/
public interface OptionsChangeListener {
/**
* Notification that an option changed.
* <p>
* Note: to reject an options change, you can throw a
* {@link OptionsVetoException}.
*
* @param options options object containing the property that changed
* @param optionName name of option that changed
* @param oldValue old value of the option
* @param newValue new value of the option
*/
public void optionsChanged( ToolOptions options,
String optionName,
Object oldValue,
Object newValue);
/**
* Notification that an option changed.
* <p>
* Note: to reject an options change, you can throw a
* {@link OptionsVetoException}.
*
* @param options options object containing the property that changed
* @param optionName name of option that changed
* @param oldValue old value of the option
* @param newValue new value of the option
* @throws OptionsVetoException if a change is rejected
*/
public void optionsChanged(ToolOptions options, String optionName, Object oldValue,
Object newValue) throws OptionsVetoException;
}