package view;

/**
 * Derived from Section 2.1.1 of the requirements.
 */
 
public abstract class SeparateWindows {
	/**
     * Puts all tabs in the currently selected window in their
	 * own window.
	 */
	abstract void separate();
}