1 /* 2 Copyright aswing.org, see the LICENCE.txt. 3 */ 4 5 import org.aswing.Component; 6 import org.aswing.geom.Rectangle; 7 8 /** 9 * The strategy for Resizer to count the new bounds of component would be resized to. 10 * @author iiley 11 */ 12 interface org.aswing.plaf.basic.frame.ResizeStrategy{ 13 /** 14 * Count and return the new bounds what the component would be resized to. 15 */ 16 public function getBounds(com:Component, movedX:Number, movedY:Number):Rectangle; 17 } 18