Lines Matching refs:width
176 * <applet code="Clock" width=50 height=50>
210 * @param width the new requested width for the applet.
213 public void resize(int width, int height) {
215 if ((d.width != width) || (d.height != height)) {
216 super.resize(width, height);
218 stub.appletResize(width, height);
226 * @param d an object giving the new width and height.
229 resize(d.width, d.height);