395396397398399400401402403404405406
} } private int validateTextSource(IDOMNode text) { try { SourceValidator validator = new SourceValidator(text); validator.validateSource(text.getSource()); } catch (InvalidCharacterException ex) { return ex.getOffset(); } return -1;
398399400401402403404405406407408409