Class ExtractClassDescriptor
java.lang.Object
org.eclipse.ltk.core.refactoring.RefactoringDescriptor
org.eclipse.jdt.core.refactoring.descriptors.JavaRefactoringDescriptor
org.eclipse.jdt.core.refactoring.descriptors.ExtractClassDescriptor
- All Implemented Interfaces:
Comparable<org.eclipse.ltk.core.refactoring.RefactoringDescriptor>
Refactoring descriptor for the extract class refactoring.
An instance of this refactoring descriptor may be obtained by calling
RefactoringContribution.createDescriptor()
on a refactoring
contribution requested by invoking
RefactoringCore.getRefactoringContribution(String)
with the
appropriate refactoring id.
- Since:
- 1.2
- Restriction:
- This class is not intended to be subclassed by clients.
- Restriction:
- This class is not intended to be instantiated by clients.
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Instances ofExtractClassDescriptor.Field
describe which fields will be moved to the extracted class and their new name there. -
Field Summary
Fields inherited from class org.eclipse.jdt.core.refactoring.descriptors.JavaRefactoringDescriptor
ATTRIBUTE_ELEMENT, ATTRIBUTE_INPUT, ATTRIBUTE_NAME, ATTRIBUTE_REFERENCES, ATTRIBUTE_SELECTION, ATTRIBUTE_VERSION, fArguments, JAR_MIGRATION, JAR_REFACTORING, JAR_SOURCE_ATTACHMENT, VALUE_VERSION_1_0
Fields inherited from class org.eclipse.ltk.core.refactoring.RefactoringDescriptor
BREAKING_CHANGE, ID_UNKNOWN, MULTI_CHANGE, NONE, STRUCTURAL_CHANGE, USER_CHANGE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the class name for the extracted class ornull
if the refactoring should choose a nameReturns the field name for the generated field ornull
if the refactoring should choose a nameReturns the fields.static ExtractClassDescriptor.Field[]
CreatesExtractClassDescriptor.Field
objects for all instance fields of the typeReturns the package where the extracted class will be created in if {isCreateTopLevel()
returnstrue
.getType()
Returns the type from which the fields are movedboolean
Returnstrue
if getters and setters are generated for fields.boolean
Returns whether the extracted class will be created as top level class or as nested class.protected void
Populates the refactoring descriptor argument map based on the specified arguments.void
setClassName
(String className) Sets the class name for the extracted class ornull
if the refactoring should choose a namevoid
setCreateGetterSetter
(boolean createGetterSetter) Sets whether getters and setters will be created for all fields.void
setCreateTopLevel
(boolean createTopLevel) Sets whether the extracted class will be created as top level class or as nested class.void
setFieldName
(String fieldName) Sets the field name for the generated field ornull
if the refactoring should choose a namevoid
setFields
(ExtractClassDescriptor.Field[] fields) Sets the fields.void
setPackage
(String packageName) Sets the package in which the top level class will be created.void
Sets the type to extract class fromorg.eclipse.ltk.core.refactoring.RefactoringStatus
Validates the refactoring descriptor with respect to the constraints imposed by the represented refactoring.Methods inherited from class org.eclipse.jdt.core.refactoring.descriptors.JavaRefactoringDescriptor
createRefactoring, elementToHandle, getArguments, handleToElement, handleToElement, handleToElement, handleToResource, resourceToHandle, setComment, setDescription, setFlags, setProject
Methods inherited from class org.eclipse.ltk.core.refactoring.RefactoringDescriptor
compareTo, createRefactoringContext, equals, getComment, getDescription, getFlags, getID, getProject, getTimeStamp, hashCode, setTimeStamp, toString
-
Constructor Details
-
ExtractClassDescriptor
public ExtractClassDescriptor()Creates a new refactoring descriptor. -
ExtractClassDescriptor
public ExtractClassDescriptor(String project, String description, String comment, Map<String, String> arguments, int flags) throws IllegalArgumentExceptionCreates a new refactoring descriptor.- Parameters:
project
- the non-empty name of the project associated with this refactoring, ornull
for a workspace refactoringdescription
- a non-empty human-readable description of the particular refactoring instancecomment
- the human-readable comment of the particular refactoring instance, ornull
for no commentarguments
- a map of arguments that will be persisted and describes all settings for this refactoringflags
- the flags of the refactoring descriptor- Throws:
IllegalArgumentException
- if the argument map contains invalid keys/values
-
-
Method Details
-
getFields
CreatesExtractClassDescriptor.Field
objects for all instance fields of the type- Parameters:
type
- the type declaring the field that will be moved to the extracted class- Returns:
- an instance of
ExtractClassDescriptor.Field
for every field declared in type that is not static - Throws:
JavaModelException
- if the type does not exist or if an exception occurs while accessing its corresponding resource.
-
setFields
Sets the fields. The order is important and should be the same as the order returned fromgetFields(IType)
. Changing the order can have side effects because of different initialization order. Only fields which returntrue
forExtractClassDescriptor.Field.isCreateField()
are created in the extracted class. Can benull
to indicate that all instance fields should be moved- Parameters:
fields
- the fields to move to the extracted class. Can benull
to indicate that all instance fields should be moved- Throws:
IllegalArgumentException
- if one of the fields isnull
-
getFields
Returns the fields. The order of the fields is the same as they will appear in the extracted class ifExtractClassDescriptor.Field.isCreateField()
returnstrue
.- Returns:
- the fields or
null
. Ifnull
all instance fields from the selected type will be moved
-
getType
Returns the type from which the fields are moved- Returns:
- the type
-
setType
Sets the type to extract class from- Parameters:
type
- the type to extract class from
-
getPackage
Returns the package where the extracted class will be created in if {isCreateTopLevel()
returnstrue
. Can returnnull
to indicate that the package will be the same as the type- Returns:
- the package for the toplevel extracted class or
null
. Ifnull
the package will be the same as the type
-
setPackage
Sets the package in which the top level class will be created. Can benull
to indicate that the package will be the same as the type- Parameters:
packageName
- the package in which the top level class will be created. Can benull
to indicate that the package will be the same as the type
-
getClassName
Returns the class name for the extracted class ornull
if the refactoring should choose a name- Returns:
- the class name for the extracted class or
null
if the refactoring should choose a name
-
setClassName
Sets the class name for the extracted class ornull
if the refactoring should choose a name- Parameters:
className
- the class name for the extracted class ornull
if the refactoring should choose a name
-
getFieldName
Returns the field name for the generated field ornull
if the refactoring should choose a name- Returns:
- the field name for the generated field or
null
if the refactoring should choose a name
-
setFieldName
Sets the field name for the generated field ornull
if the refactoring should choose a name- Parameters:
fieldName
- the field name for the generated field ornull
if the refactoring should choose a name
-
isCreateTopLevel
public boolean isCreateTopLevel()Returns whether the extracted class will be created as top level class or as nested class. Iftrue
the extracted class will be generated as top level class. The default istrue
- Returns:
- if
true
the extracted class will be generated as top level class. The default istrue
-
setCreateTopLevel
public void setCreateTopLevel(boolean createTopLevel) Sets whether the extracted class will be created as top level class or as nested class. Iftrue
the extracted class will be generated as top level class. Else the class will be created as nested class in the type. The default istrue
- Parameters:
createTopLevel
-true
to generated as top level class. The default istrue
-
setCreateGetterSetter
public void setCreateGetterSetter(boolean createGetterSetter) Sets whether getters and setters will be created for all fields.- Parameters:
createGetterSetter
-true
to create getters and setters. Default isfalse
.
-
isCreateGetterSetter
public boolean isCreateGetterSetter()Returnstrue
if getters and setters are generated for fields. Default isfalse
.- Returns:
true
if getters and setters are generated for fields. Default isfalse
-
populateArgumentMap
protected void populateArgumentMap()Description copied from class:JavaRefactoringDescriptor
Populates the refactoring descriptor argument map based on the specified arguments. Subclasses should extend and add their arguments toJavaRefactoringDescriptor.fArguments
.- Overrides:
populateArgumentMap
in classJavaRefactoringDescriptor
-
validateDescriptor
public org.eclipse.ltk.core.refactoring.RefactoringStatus validateDescriptor()Description copied from class:JavaRefactoringDescriptor
Validates the refactoring descriptor with respect to the constraints imposed by the represented refactoring.Clients must call this method to verify that all arguments have been correctly set and that they satisfy the constraints imposed by specific refactorings. Returning a refactoring status of severity
RefactoringStatus.FATAL
indicates that the refactoring descriptor cannot be used to create a refactoring instance.- Overrides:
validateDescriptor
in classJavaRefactoringDescriptor
- Returns:
- a refactoring status describing the outcome of the validation
-