(int top, int left, int bottom, int right)
| 1243 | } |
| 1244 | |
| 1245 | Insets getInsets(int top, int left, int bottom, int right) { |
| 1246 | if (customInsets) { |
| 1247 | customInsets = false; |
| 1248 | return new Insets(topInset, leftInset, bottomInset, 0); |
| 1249 | } else |
| 1250 | return new Insets(top, left, bottom, right); |
| 1251 | } |
| 1252 | |
| 1253 | /** Add an Object implementing the DialogListener interface. This object will |
| 1254 | * be notified by its dialogItemChanged method of input to the dialog. The first |
no outgoing calls
no test coverage detected