package view;

/**
 * Derived from Section 2.1.1 of the requirements.
 */
public abstract class CombineWindows {
	/**
     * Combines all windows for the currently selected class
	 * into tabs in one window.
     */
	abstract void combine();
}