//Copyright (c) 2000-2003 San Diego Supercomputer Center (SDSC), //a facility operated by the University of California, San Diego (UCSD) // //Users and possessors of this source code are hereby granted a //nonexclusive, royalty-free copyright and design patent license to //use this code in individual software. License is not granted for //commercial resale, in whole or in part, without prior written //permission from SDSC. This source is provided "AS IS" without express //or implied warranty of any kind. // //For further information, please see: http://mbt.sdsc.edu // package edu.sdsc.mbt.util; import java.awt.*; /** * Interface that specifies methods impemented by panels whose dimensions can be set from outside. * @author Oleksandr V. Buzko */ public interface Settable{ /** * Sets dimensions of a cell in the sequence viewer. */ public void setCellDimensions(Dimension d); }