
org.eclipse.persistence.jpa.jpql.DefaultRefactoringTool Maven / Gradle / Ivy
Show all versions of eclipselink Show documentation
/*******************************************************************************
* Copyright (c) 2011, 2013 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 v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation
*
******************************************************************************/
package org.eclipse.persistence.jpa.jpql;
import org.eclipse.persistence.jpa.jpql.model.DefaultActualJPQLQueryFormatter;
import org.eclipse.persistence.jpa.jpql.model.IJPQLQueryBuilder;
import org.eclipse.persistence.jpa.jpql.model.IJPQLQueryFormatter;
import org.eclipse.persistence.jpa.jpql.spi.IManagedTypeProvider;
/**
* This utility class provides basic refactoring support.
*
* Provided functionality:
*
* - Renaming an identification variable;
* - Renaming a state field or collection-valued field;
* - Renaming an entity name;
* - Renaming a {@link Class} name (e.g.: in constructor expression);
* - Renaming an {@link Enum} constant.
*
*
* Provisional API: This interface is part of an interim API that is still under development and
* expected to change significantly before reaching stability. It is available at this early stage
* to solicit feedback from pioneering adopters on the understanding that any code that uses this
* API will almost certainly be broken (repeatedly) as the API evolves.
*
* @see EclipseLinkRefactoringTool
*
* @version 2.4
* @since 2.4
* @author Pascal Filion
*/
public class DefaultRefactoringTool extends RefactoringTool {
/**
* Creates a new RefactoringTool
.
*
* @param managedTypeProvider The external form of a provider that gives access to the JPA metadata
* @param jpqlQueryBuilder The builder that creates the {@link org.eclipse.persistence.jpa.jpql.
* model.query.StateObject StateObject} representation of the JPQL query
* @param jpqlQuery The JPQL query to manipulate
*/
public DefaultRefactoringTool(IManagedTypeProvider managedTypeProvider,
IJPQLQueryBuilder jpqlQueryBuilder,
CharSequence jpqlQuery) {
super(managedTypeProvider, jpqlQueryBuilder, jpqlQuery);
}
/**
* Creates a new RefactoringTool
.
*
* @param managedTypeProvider The external form of a provider that gives access to the JPA metadata
* @param jpqlQueryBuilder The builder that creates the {@link org.eclipse.persistence.jpa.jpql.
* model.query.StateObject} representation of the JPQL query
* @param jpqlFragment The JPQL query to manipulate or a single JPQL fragment, which is parsed
* using the JPQL query BNF identifier by the given ID
* @param jpqlQueryBNFId The unique identifier of the {@link org.eclipse.persistence.jpa.jpql.
* parser.JPQLQueryBNF JPQLQueryBNF} that determines how to parse the JPQL fragment
*/
public DefaultRefactoringTool(IManagedTypeProvider managedTypeProvider,
IJPQLQueryBuilder jpqlQueryBuilder,
CharSequence jpqlFragment,
String jpqlQueryBNFId) {
super(managedTypeProvider, jpqlQueryBuilder, jpqlFragment, jpqlQueryBNFId);
}
/**
* {@inheritDoc}
*/
@Override
protected IJPQLQueryFormatter buildFormatter() {
return new DefaultActualJPQLQueryFormatter(true);
}
/**
* {@inheritDoc}
*/
@Override
protected JPQLQueryContext buildJPQLQueryContext() {
return new DefaultJPQLQueryContext(getGrammar());
}
}