package fr.unistra.pelican.gui.MultiViews; /** * Something that display a View and which has a given size. * * @author Benjamin Perret * */ public interface ViewPort { public int getHeight(); public int getWidth(); }