* Placeholder method for minimizing the window. By default, this method simply fires the minimize event since the
* behavior of minimizing a window is application-specific. To implement custom minimize behavior, either the minimize
* event can be handled or this method can be overridden.
*/
public void minimize() {
fireEvent(new MinimizeEvent());
}