Dimension.java [src/java/ngmf/ui/mms] Revision: 165da58a8724d08c41749b1fe4b7229568dbefc5  Date: Wed Jun 19 17:13:49 MDT 2019
/*
 * $Id$
 * 
 * This file is part of the Object Modeling System (OMS),
 * 2007-2012, Olaf David and others, Colorado State University.
 *
 * OMS is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, version 2.1.
 *
 * OMS is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with OMS.  If not, see <http://www.gnu.org/licenses/lgpl.txt>.
 */
package ngmf.ui.mms;

public interface Dimension {

  public String getName();


  public int getSize();


  public void setSize(int new_size);


  public String[] getItemNames();


  public String[] getItemDesc();


  public void addItemName(int i, String in, int size);


  public void addItemDesc(int i, String in, int size);
}