1 18 package org.apache.batik.util.gui; 19 20 import java.awt.GridBagConstraints ; 21 22 29 public class ExtendedGridBagConstraints extends GridBagConstraints { 30 31 39 public void setGridBounds(int x, int y, int width, int height) { 40 gridx = x; 41 gridy = y; 42 gridwidth = width; 43 gridheight = height; 44 } 45 46 52 public void setWeight(double weightx, double weighty) { 53 this.weightx = weightx; 54 this.weighty = weighty; 55 } 56 } 57 | Popular Tags |