MCPcopy Create free account
hub / github.com/Garten/sourcecraft / getConvertOptionNames

Method getConvertOptionNames

src/periphery/Config.java:111–120  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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();

Callers 1

initDetailsMethod · 0.80

Calls 1

getNameMethod · 0.45

Tested by

no test coverage detected