/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package array.visualizer; /** * * @author S630690 */ interface AAFrame { abstract void reposition(); abstract boolean isVisible(); abstract void dispose(); }