package org.netbeans.core.output2; import org.openide.windows.InputOutput; import javax.swing.*; /** * An extension to the InputOutput interface allowing toolbar actions to be provided. */ public interface CallbackInputOutput extends InputOutput { /** * Provide actions which may be displayed on the toolbar in the output window. * This method has the following constraints: * *

* The typical use case for this method is to provide a "stop" action; other uses * are, of course, possible. *

* If a passed action has a name and accelerator key, it may also be included in the output * view's popup menu and bound as a keyboard action. * * @param a An array of actions with icons * @throws IllegalArgumentException If more than 5 actions are in the array, or any of the actions have * null arguments * @throws IllegalStateException If called repeatedly * @throws NullPointerException If any of the actions are null */ public void setToolbarActions (Action[] a); }