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

/openjdk7/jdk/src/share/classes/javax/swing/
H A DRepaintManager.java973 * The buffer might be smaller than <code>(proposedWidth,proposedHeight)</code>
977 public Image getOffscreenBuffer(Component c,int proposedWidth,int proposedHeight) { argument
980 return delegate.getOffscreenBuffer(c, proposedWidth, proposedHeight);
982 return _getOffscreenBuffer(c, proposedWidth, proposedHeight);
990 * This buffer might be smaller than <code>(proposedWidth,proposedHeight)</code>.
998 int proposedWidth,int proposedHeight) {
1001 return delegate.getVolatileOffscreenBuffer(c, proposedWidth,
1020 int width = proposedWidth < 1 ? 1 :
1021 (proposedWidth > maxSize.width? maxSize.width : proposedWidth);
997 getVolatileOffscreenBuffer(Component c, int proposedWidth,int proposedHeight) argument
1037 _getOffscreenBuffer(Component c, int proposedWidth, int proposedHeight) argument
[all...]

Completed in 55 milliseconds