setEJBQL(e);
}
}
void validateEJBQL() {
PositionException positionException = ejbqlQueryValidator.validateEJBQL(
getQuery(),
new EntityResolver(((DataChannelDescriptor) mediator
.getProject()
.getRootNode()).getDataMaps()));
if (positionException != null) {
if (positionException.getBeginLine() != null
|| positionException.getBeginColumn() != null
|| positionException.getLength() != null) {
scriptArea.setHighlightText(
positionException.getBeginLine(),
positionException.getBeginColumn(),
positionException.getLength(),
positionException.getMessage());
}
else {
scriptArea.removeHighlightText();
}
}