Lines Matching refs:commandParameter
189 public HashMap<Integer, String> commandParameter = new HashMap<Integer, String>(); field in CarrierXmlParser.SsEntry
207 + ", commandParameter:" + commandParameter.toString() in toString()
216 int mapSize = commandParameter.size(); in getCommandStructure()
220 if (commandParameter.containsKey(parameterIndex)) { in getCommandStructure()
221 if (commandParameter.get(parameterIndex) != null) { in getCommandStructure()
222 result = result + STAR_SIGN + commandParameter.get(parameterIndex); in getCommandStructure()
239 int mapSize = commandParameter.size(); in makeCommand()
244 if (commandParameter.containsKey(counter)) { in makeCommand()
248 && informationSet.containsKey(commandParameter.get(counter))) { in makeCommand()
249 getInputValue = informationSet.get(commandParameter.get(counter)); in makeCommand()
252 result = result + STAR_SIGN + commandParameter.get(counter); in makeCommand()
255 commandParameter.get(counter)); in makeCommand()
578 entry.commandParameter.put(Integer.valueOf(position), value); in readParameters()