Return an existing file with current file name and specified base. May return null. @return existing file, or null
()
| 1160 | * @return existing file, or null |
| 1161 | */ |
| 1162 | public File getFile() { |
| 1163 | if (exists()) { |
| 1164 | return getResource().getFile(); |
| 1165 | } |
| 1166 | return null; |
| 1167 | } |
| 1168 | |
| 1169 | /** |
| 1170 | * Determines if this node matches another node. |
nothing calls this directly
no test coverage detected