Class AbstractRefactoringTool
java.lang.Object
org.eclipse.persistence.jpa.jpql.tools.AbstractRefactoringTool
- Direct Known Subclasses:
BasicRefactoringTool
,RefactoringTool
The abstract definition of a refactoring
- Since:
- 2.4
- Version:
- 2.4
- See Also:
-
Constructor Summary
ModifierConstructorDescriptionprotected
AbstractRefactoringTool
(CharSequence jpqlFragment, IManagedTypeProvider managedTypeProvider, String jpqlQueryBNFId) Creates a newBasicRefactoringTool
. -
Method Summary
Modifier and TypeMethodDescriptionReturns the original JPQL query or the JPQL fragment that was passed to this tool so it can be manipulated.Returns the unique identifier of the JPQL query BNF that determined how the JPQL query or fragment needs to be parsed.Returns the provider of managed types.boolean
Determines whether the parsing system should be tolerant, meaning if it should try to parse invalid or incomplete queries.void
setTolerant
(boolean tolerant) Sets whether the parsing system should be tolerant, meaning if it should try to parse invalid or incomplete queries.abstract String
Returns the resulted of the refactoring operations.
-
Constructor Details
-
AbstractRefactoringTool
protected AbstractRefactoringTool(CharSequence jpqlFragment, IManagedTypeProvider managedTypeProvider, String jpqlQueryBNFId) Creates a newBasicRefactoringTool
.- Parameters:
jpqlFragment
- The JPQL query to manipulate or a single JPQL fragment, which is parsed using the JPQL query BNF identifier by the given IDmanagedTypeProvider
- The external form of a provider that gives access to the JPA metadatajpqlQueryBNFId
- The unique identifier of theJPQLQueryBNF
that determines how to parse the JPQL fragment
-
-
Method Details
-
getJPQLFragment
Returns the original JPQL query or the JPQL fragment that was passed to this tool so it can be manipulated.- Returns:
- The string representation of the JPQL query or fragment
-
getJPQLQueryBNFId
Returns the unique identifier of the JPQL query BNF that determined how the JPQL query or fragment needs to be parsed.- Returns:
- The ID of the
JPQLQueryBNF
used to parse the query
-
getManagedTypeProvider
Returns the provider of managed types.- Returns:
- The provider that gives access to the managed types
-
isTolerant
public boolean isTolerant()Determines whether the parsing system should be tolerant, meaning if it should try to parse invalid or incomplete queries.- Returns:
- By default, the parsing system uses tolerance
-
setTolerant
public void setTolerant(boolean tolerant) Sets whether the parsing system should be tolerant, meaning if it should try to parse invalid or incomplete queries.- Parameters:
tolerant
-true
if the JPQL query or fragment should be parsed with tolerance;false
otherwise
-
toActualText
Returns the resulted of the refactoring operations. The list of changes will be removed after applying the changes.- Returns:
- The string representation of the JPQL query that contains the changes
-