Class ChangeMethodSignatureArguments.ThrownException
- java.lang.Object
-
- org.eclipse.jdt.core.refactoring.participants.ChangeMethodSignatureArguments.ThrownException
-
- Enclosing class:
- ChangeMethodSignatureArguments
public static final class ChangeMethodSignatureArguments.ThrownException extends Object
Instances ofChangeMethodSignatureArguments.ThrownException
are used to describe the new thrown exceptions after a change method signature refactoring.
-
-
Constructor Summary
Constructors Constructor Description ThrownException(int oldIndex, String newSignature)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getOldIndex()
Returns the index of the thrown exception in the original method or-1
if the thrown exception has been added.String
getType()
Returns the new type of the thrown exception in signature notation (SeeSignature
).String
toString()
-
-
-
Constructor Detail
-
ThrownException
public ThrownException(int oldIndex, String newSignature)
- Parameters:
oldIndex
- the index of the thrown exception in the original method or-1
if the thrown exception is a new thrown exception.newSignature
- the new type of the thrown exception in signature notation (SeeSignature
).
-
-
Method Detail
-
getOldIndex
public int getOldIndex()
Returns the index of the thrown exception in the original method or-1
if the thrown exception has been added.- Returns:
- the index of the parameter in the original method or
-1
if the thrown exception has been added.
-
getType
public String getType()
Returns the new type of the thrown exception in signature notation (SeeSignature
).- Returns:
- the the new type
-
-