package uk.ac.rhul.cs.cl1; /** * Common interface for objects that have a size * * @author tamas */ public interface Sized { public int size(); }