List of usage examples for java.awt Adjustable setValue
void setValue(int v);
From source file:Main.java
protected static void moveAdjustable(int location, Adjustable scrollBar) { if (scrollBar == null) { return;/*from w w w.ja va 2s .co m*/ } scrollBar.setValue(location); }