001/* 002* SizedObject -- An interface for any objects that have a defined size. 003* 004* Copyright (C) 2011 by Joseph A. Huwaldt. 005* All rights reserved. 006* 007* This library is free software; you can redistribute it and/or 008* modify it under the terms of the GNU Lesser General Public 009* License as published by the Free Software Foundation; either 010* version 2 of the License, or (at your option) any later version. 011* 012* This library is distributed in the hope that it will be useful, 013* but WITHOUT ANY WARRANTY; without even the implied warranty of 014* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 015* Lesser General Public License for more details. 016* 017* You should have received a copy of the GNU Lesser General Public License 018* along with this program; if not, write to the Free Software 019* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 020* Or visit: http://www.gnu.org/licenses/lgpl.html 021**/ 022package jahuwaldt.js.util; 023 024/** 025* An interface for any objects that have a defined size. 026* 027* <p> Modified by: Joseph A. Huwaldt </p> 028* 029* @author Joseph A. Huwaldt Date: May 11, 2011 030* @version May 11, 2011 031**/ 032public interface SizedObject { 033 034 /** 035 * Return the size of the object. 036 **/ 037 int size(); 038}