public interface MappingProcessor
MappingReader| Modifier and Type | Method and Description |
|---|---|
boolean |
processClassMapping(String className,
String newClassName)
Processes the given class name mapping.
|
void |
processFieldMapping(String className,
String fieldType,
String fieldName,
String newClassName,
String newFieldName)
Processes the given field name mapping.
|
void |
processMethodMapping(String className,
int firstLineNumber,
int lastLineNumber,
String methodReturnType,
String methodName,
String methodArguments,
String newClassName,
int newFirstLineNumber,
int newLastLineNumber,
String newMethodName)
Processes the given method name mapping.
|
boolean processClassMapping(String className, String newClassName)
className - the original class name.newClassName - the new class name.void processFieldMapping(String className, String fieldType, String fieldName, String newClassName, String newFieldName)
className - the original class name.fieldType - the original external field type.fieldName - the original field name.newClassName - the new class name.newFieldName - the new field name.void processMethodMapping(String className, int firstLineNumber, int lastLineNumber, String methodReturnType, String methodName, String methodArguments, String newClassName, int newFirstLineNumber, int newLastLineNumber, String newMethodName)
className - the original class name.firstLineNumber - the first line number of the method, or 0 if
it is not known.lastLineNumber - the last line number of the method, or 0 if
it is not known.methodReturnType - the original external method return type.methodName - the original external method name.methodArguments - the original external method arguments.newClassName - the new class name.newFirstLineNumber - the new first line number of the method, or 0
if it is not known.newLastLineNumber - the new last line number of the method, or 0
if it is not known.newMethodName - the new method name.Copyright © 2015. All Rights Reserved.