001    package railo.runtime.type;
002    
003    public interface Sizeable {
004            
005            /**
006             * return the size of the object
007             * @return size of the object
008             */
009            public long sizeOf();
010    }