Returns the text strings @return A list of Strings corresponding to the text strings.
()
| 95 | * @return A list of Strings corresponding to the text strings. |
| 96 | */ |
| 97 | public List |
| 98 | getStrings() { |
| 99 | List list = new ArrayList(strings.size()); |
| 100 | for (int i = 0; i < strings.size(); i++) |
| 101 | list.add(byteArrayToString((byte []) strings.get(i), false)); |
| 102 | return list; |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * Returns the text strings |
nothing calls this directly
no test coverage detected