package view;

import java.util.Collection;

//bstanaka for comments
/**
 * Derived from Section 2.1.1 of the requirements.
 */
public abstract class Window {
    /**
    * open is a Collection of Windows currently open.
    */
    public Collection<WindowFrame> open;
}