1 20 package JFlex.gui; 21 22 import java.awt.Component ; 23 24 30 public class GridPanelConstraint { 31 32 int x, y, width, height, handle; 33 Component component; 34 35 public GridPanelConstraint(int x, int y, int width, int height, 36 int handle, Component component) { 37 this.x = x; 38 this.y = y; 39 this.width = width; 40 this.height = height; 41 this.handle = handle; 42 this.component = component; 43 } 44 } 45 | Popular Tags |