blob: c5c7646f5732fbc0b405cd88fbf95dd0ce446560 [file] [log] [blame]
/*
* Copyright (c) 2011, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation
//
package org.eclipse.persistence.jpa.jpql.tools.model;
import org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractSelectClauseStateObject;
import org.eclipse.persistence.jpa.jpql.tools.model.query.StateObject;
/**
* The abstract implementation of {@link ISimpleSelectExpressionStateObjectBuilder} that supports
* the creation of the select expression based on the JPQL grammar defined in JPA 2.0.
*
* @version 2.4
* @since 2.4
* @author Pascal Filion
*/
public abstract class AbstractSimpleSelectExpressionStateObjectBuilder extends AbstractScalarExpressionStateObjectBuilder<ISimpleSelectExpressionStateObjectBuilder>
implements ISimpleSelectExpressionStateObjectBuilder {
/**
* Creates a new <code>AbstractSimpleSelectExpressionStateObjectBuilder</code>.
*
* @param parent The select clause for which this builder can create a select expression
*/
protected AbstractSimpleSelectExpressionStateObjectBuilder(AbstractSelectClauseStateObject parent) {
super(parent);
}
@Override
protected AbstractSelectClauseStateObject getParent() {
return (AbstractSelectClauseStateObject) super.getParent();
}
@Override
public ISimpleSelectExpressionStateObjectBuilder variable(String variable) {
StateObject stateObject = buildIdentificationVariable(variable);
add(stateObject);
return this;
}
}