Searched refs:progressString (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJProgressBar.java171 protected String progressString; field in class:JProgressBar
178 * the <code>progressString</code> is <code>null</code>,
180 * Otherwise, the <code>progressString</code> is
483 if (progressString != null) {
484 return progressString;
513 String oldValue = progressString;
514 progressString = s;
515 firePropertyChange("string", oldValue, progressString);
516 if (progressString == null || oldValue == null || !progressString
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaProgressBarUI.java200 final String progressString = progressBar.getString();
202 final Point renderLocation = getStringPlacement(g2, progressString, x, y, width, height);
207 SwingUtilities2.drawString(progressBar, g2, progressString, renderLocation.x, renderLocation.y);
217 SwingUtilities2.drawString(progressBar, g2, progressString, renderLocation.x, renderLocation.y);
230 protected Point getStringPlacement(final Graphics g, final String progressString, int x, int y, int width, int height) { argument
232 final int stringWidth = fontSizer.stringWidth(progressString);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicProgressBarUI.java758 String progressString = progressBar.getString();
760 Point renderLocation = getStringPlacement(g2, progressString,
766 SwingUtilities2.drawString(progressBar, g2, progressString,
770 SwingUtilities2.drawString(progressBar, g2, progressString,
777 renderLocation = getStringPlacement(g2, progressString,
779 SwingUtilities2.drawString(progressBar, g2, progressString,
783 SwingUtilities2.drawString(progressBar, g2, progressString,
797 protected Point getStringPlacement(Graphics g, String progressString, argument
802 progressString);

Completed in 36 milliseconds