Interface ICallerMethod
- All Known Implementing Classes:
CallerMethod,RecursivelyCalledMethod
public interface ICallerMethod
-
Method Summary
Modifier and TypeMethodDescriptiongenerateCallSequenceDiagramText(String paramIndent) Generate call sequence diagram text.Gets the callees.Gets the caller class.Gets the diagram participants.Gets the diagram text.Gets the method name.Gets the return type.
-
Method Details
-
getMethodName
String getMethodName()Gets the method name.- Returns:
- the method name
-
getCallees
List<ICallerMethod> getCallees()Gets the callees.- Returns:
- the callees
-
getCallerClass
ICallerClass getCallerClass()Gets the caller class.- Returns:
- the caller class
-
getDiagramParticipants
Gets the diagram participants.- Returns:
- the diagram participants
-
getDiagramText
Gets the diagram text.- Returns:
- the diagram text
- Throws:
ClassNotFoundException- the class not found exceptionjavassist.NotFoundException- the not found exception
-
generateCallSequenceDiagramText
Generate call sequence diagram text.- Parameters:
paramIndent- the param indent- Returns:
- the string
- Throws:
javassist.NotFoundException- the not found exception
-
getReturnType
Gets the return type.- Returns:
- the return type
- Throws:
javassist.NotFoundException- if type is not found
-