()
| 238 | } |
| 239 | |
| 240 | public String toNativeString() { |
| 241 | if(parent == null || parent == ROOT) { |
| 242 | return component; |
| 243 | } else { |
| 244 | return parent.toNativeString() + File.separatorChar + component; |
| 245 | } |
| 246 | } |
| 247 | |
| 248 | /** |
| 249 | * Construct a Trie from a string, where '/' is the separator. |
no outgoing calls