Returns the file path.
()
| 168 | |
| 169 | /** Returns the file path. */ |
| 170 | public String getFilePath() { |
| 171 | String dir = directory; |
| 172 | if (dir==null) |
| 173 | dir = ""; |
| 174 | dir = IJ.addSeparator(dir); |
| 175 | return dir + fileName; |
| 176 | } |
| 177 | |
| 178 | /** Returns the offset as a long. */ |
| 179 | public final long getOffset() { |
no test coverage detected