()
| 2241 | /// This callback indicates that a component pointing at this border is now deinitilized |
| 2242 | /// This method may be invoked multiple times. |
| 2243 | public void unlock() { |
| 2244 | if (images != null) { |
| 2245 | int ilen = images.length; |
| 2246 | for (int iter = 0; iter < ilen; iter++) { |
| 2247 | if (images[iter] != null) { |
| 2248 | images[iter].unlock(); |
| 2249 | } |
| 2250 | } |
| 2251 | } |
| 2252 | } |
| 2253 | |
| 2254 | /// This method is for internal usage only! |
| 2255 | public Object getProperty(String n) { |
no test coverage detected