Searched defs:tileIcon (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/border/
H A DMatteBorder.java52 protected Icon tileIcon; field in class:MatteBorder
84 * @param tileIcon the icon to be used for tiling the border
86 public MatteBorder(int top, int left, int bottom, int right, Icon tileIcon) { argument
88 this.tileIcon = tileIcon;
94 * @param tileIcon the icon to be used for tiling the border
97 public MatteBorder(Insets borderInsets, Icon tileIcon) { argument
99 this.tileIcon = tileIcon;
108 * @param tileIcon th
110 MatteBorder(Icon tileIcon) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DBorderFactory.java631 * @param tileIcon the <code>Icon</code> object used for the border tiles
635 Icon tileIcon) {
636 return new MatteBorder(top, left, bottom, right, tileIcon);
634 createMatteBorder(int top, int left, int bottom, int right, Icon tileIcon) argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DBorderUIResource.java202 Icon tileIcon) {
203 super(top, left, bottom, right, tileIcon);
206 public MatteBorderUIResource(Icon tileIcon) { argument
207 super(tileIcon);
201 MatteBorderUIResource(int top, int left, int bottom, int right, Icon tileIcon) argument

Completed in 51 milliseconds