(int index)
| 49 | } |
| 50 | //! Return image by index |
| 51 | public AniIcon iconAt(int index) { //!< Index of requested image in the list |
| 52 | if (index < size() && index >= 0) { |
| 53 | return icons[index]; |
| 54 | } |
| 55 | return null; |
| 56 | } |
| 57 | public int size() { |
| 58 | return icons != null ? icons.length : 0; |
| 59 | } |