Convenience Method author: Thomas Behr 28-04-02 @param line @return true if it is a comment
(String line)
| 328 | * @return true if it is a comment |
| 329 | */ |
| 330 | private static boolean isComment(String line) |
| 331 | { |
| 332 | return line.trim().startsWith(IOConstants.TAG_COMMENT); |
| 333 | } |
| 334 | |
| 335 | /* |
| 336 | * Given a Source string and Target string, |