Package java.awt

Examples of java.awt.ScrollPaneAdjustable.paramString()


    ScrollPane sp = new ScrollPane();
    ScrollPaneAdjustable vspa = (ScrollPaneAdjustable) sp.getVAdjustable();
    ScrollPaneAdjustable hspa = (ScrollPaneAdjustable) sp.getHAdjustable();
    harness.check(vspa.paramString(),
             "vertical,[0..0],val=0,vis=0,unit=1,block=1,isAdjusting=false");
    harness.check(hspa.paramString(),
             "horizontal,[0..0],val=0,vis=0,unit=1,block=1,isAdjusting=false");
  }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.