return false;
}
private AttributeProperty getParentExpressionLastPathChildAttribute(
EJBQLExpression expression) {
Node parent = ((SimpleNode) expression).jjtGetParent();
EJBQLPathAnaliserTranslator translator = new EJBQLPathAnaliserTranslator(context);
parent.visit(translator);
translator.visitPath(parent, parent.getChildrenCount());
String id = translator.idPath;
if (id != null) {
ClassDescriptor descriptor = context.getEntityDescriptor(id);
if (descriptor == null) {