Example #1
0
 public void setSize(Point size) {
   scrollable.setSize(size);
 }
 private void setImageCommon(Image image) {
   Rectangle imageBounds = image.getBounds();
   control.setSize(imageBounds.width, imageBounds.height);
   setImage(image);
 }
Example #3
0
 public void setSize(int width, int height) {
   scrollable.setSize(new Point(width, height));
 }