()
| 109 | } |
| 110 | |
| 111 | public String[] getConvertOptionNames() { |
| 112 | Object[] optionArray = this.options.toArray(); |
| 113 | int length = optionArray.length; |
| 114 | String[] result = new String[length]; |
| 115 | |
| 116 | for (int i = 0; i < length; i++) { |
| 117 | result[i] = ((ConvertOption) optionArray[i]).getName(); |
| 118 | } |
| 119 | return result; |
| 120 | } |
| 121 | |
| 122 | public SourceGame[] getGamesArray() { |
| 123 | Object[] gameArray = this.games.toArray(); |