Lines Matching refs:Integer

96 …private static final Integer BACKGROUND_COLOR = 16777216;  //new Integer(SystemColor.window.getRGB…
98 private final static Integer TRANSPARENT = new Integer(-1);
173 … new Integer((imageSize.Height + gap.Height) * rows + gap.Height + imageTextHeight + 1), in create()
174 new Integer(pos.Width), in create()
175 new Integer(pos.Height), in create()
177 new Integer((imageSize.Width + gap.Width) * cols + gap.Width) in create()
212 new Integer(imageSize.Height + (selectionGap.Height * 2)), in create()
218 new Integer(selectionWidth) in create()
238 new Integer(imageTextHeight), in create()
240 new Integer(pos.Width + 1), in create()
241 new Integer(pos.Height + (imageSize.Height + gap.Height) * rows + gap.Height), in create()
245 new Integer(cols * (imageSize.Width + gap.Width) + gap.Width - 2) in create()
251 final Integer btnSize = 14; in create()
257 new Integer(pos.Width), in create()
258 …new Integer(pos.Height + (imageSize.Height + gap.Height) * rows + gap.Height + imageTextHeight + 1… in create()
269 …new Integer(pos.Width + (imageSize.Width + gap.Width) * cols + gap.Width - btnSize.intValue() + 1), in create()
270 …new Integer(pos.Height + (imageSize.Height + gap.Height) * rows + gap.Height + imageTextHeight + 1… in create()
279 new Integer(LINE_HEIGHT), in create()
281 new Integer(pos.Width + btnSize.intValue() + 1), in create()
282 …new Integer(pos.Height + (imageSize.Height + gap.Height) * rows + gap.Height + imageTextHeight + (… in create()
286 … new Integer(cols * (imageSize.Width + gap.Width) + gap.Width - 2 * btnSize.intValue() - 1) in create()
312 m_imageHeight = new Integer(imageSize.Height); in create()
313 m_imageWidth = new Integer(imageSize.Width); in create()
327 private Integer m_imageHeight, m_imageWidth;
356 new Integer(getImagePosX(_col)), in createImage()
357 new Integer(getImagePosY(_row)), in createImage()
475 MOVE_SELECTION_VALS[0] = new Integer(getImagePosX(col) - selectionGap.Width); in moveSelection()
476 MOVE_SELECTION_VALS[1] = new Integer(getImagePosY(row) - selectionGap.Height); in moveSelection()
902 return Integer.valueOf(controlName.substring(6 + name.length())).intValue(); in getImageFromEvent()