FileDocCategorySizeDatePackage
SampleSet.javaAPI DocExample1515Tue Dec 12 18:58:50 GMT 2000None

SampleSet

public class SampleSet extends Object

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)

      Rectangle r = new Rectangle(100, 20);
      System.out.println("original: " + r.toString());
      modifyWidth(r, new Integer(300));
      System.out.println("modified: " + r.toString());
   
static voidmodifyWidth(java.awt.Rectangle r, java.lang.Integer widthParam)

      Field widthField;
      Integer widthValue;
      Class c = r.getClass();
      try {
        widthField = c.getField("width");
        widthField.set(r, widthParam);
      } catch (NoSuchFieldException e) {
          System.out.println(e);
      } catch (IllegalAccessException e) {
          System.out.println(e);
      }