Source
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
189190191192193194195
return (SourceId) super.getID(); } @Override protected void validateOtherPropertiesThanTheName(ValidationMessageCollector collector) { new SourceValidator(this, collector).run(); }