|
ResizableVisualResource |
|
1 /* 2 * Copyright (c) 1998-2001, The University of Sheffield. 3 * 4 * This file is part of GATE (see http://gate.ac.uk/), and is free 5 * software, licenced under the GNU Library General Public License, 6 * Version 2, June 1991 (in the distribution as file licence.html, 7 * and also available at http://gate.ac.uk/gate/licence.html). 8 * 9 * Valentin Tablan 13/11/2000 10 * 11 * $Id: ResizableVisualResource.java,v 1.1 2002/02/27 16:40:05 valyt Exp $ 12 * 13 */ 14 15 package gate.gui; 16 17 import gate.*; 18 /** 19 * This interface denotes visual resources that can be resized. 20 */ 21 public interface ResizableVisualResource extends VisualResource{ 22 }
|
ResizableVisualResource |
|