Searched defs:tileWidth (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthProgressBarUI.java51 private int tileWidth; //the width of each tile field in class:SynthProgressBarUI
102 tileWidth = style.getInt(context, "ProgressBar.tileWidth", 15);
110 tileWidth *= 1.15;
112 tileWidth *= 0.857;
114 tileWidth *= 0.784;
293 int offset = (int)(percentComplete * tileWidth);
298 for (int i=x-tileWidth+offset; i<=width; i+=tileWidth) {
300 context, g, i, y, tileWidth, heigh
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/
H A DImageWriteParam.java238 protected int tileWidth = 0; field in class:ImageWriteParam
549 * The <code>tileWidth</code> and <code>tileHeight</code>
558 * @param tileWidth the width of each tile.
572 * @exception IllegalArgumentException if <code>tileWidth</code>
582 public void setTiling(int tileWidth, argument
592 if (tileWidth <= 0 || tileHeight <= 0) {
605 if ((tileWidth < min.width) ||
606 (tileWidth > max.width) ||
619 this.tileWidth = tileWidth;
[all...]

Completed in 31 milliseconds