Package org.adoptopenjdk.jitwatch.model
Interface IMetaMember
-
- All Known Implementing Classes:
AbstractMetaMember,MetaConstructor,MetaMethod
public interface IMetaMember
-
-
Method Summary
-
-
-
Method Detail
-
getMetaClass
MetaClass getMetaClass()
-
getMemberBytecode
MemberBytecode getMemberBytecode()
-
getInstructions
java.util.List<BytecodeInstruction> getInstructions()
-
toStringUnqualifiedMethodName
java.lang.String toStringUnqualifiedMethodName(boolean visibilityAndReturnType, boolean fqParamTypes)
-
getMemberName
java.lang.String getMemberName()
-
getFullyQualifiedMemberName
java.lang.String getFullyQualifiedMemberName()
-
getAbbreviatedFullyQualifiedMemberName
java.lang.String getAbbreviatedFullyQualifiedMemberName()
-
getModifier
int getModifier()
-
getModifierString
java.lang.String getModifierString()
-
getReturnTypeName
java.lang.String getReturnTypeName()
-
getParamTypeNames
java.lang.String[] getParamTypeNames()
-
matchesSignature
boolean matchesSignature(MemberSignatureParts msp, boolean matchTypesExactly)
-
isConstructor
boolean isConstructor()
-
getQueuedAttribute
java.lang.String getQueuedAttribute(java.lang.String key)
-
getQueuedAttributes
java.util.Map<java.lang.String,java.lang.String> getQueuedAttributes()
-
storeCompilation
void storeCompilation(Compilation compilation)
-
getCompiledAttribute
java.lang.String getCompiledAttribute(java.lang.String key)
-
getCompiledAttributes
java.util.Map<java.lang.String,java.lang.String> getCompiledAttributes()
-
getCompilationByCompileID
Compilation getCompilationByCompileID(java.lang.String compileID)
-
getCompilationByAddress
Compilation getCompilationByAddress(AssemblyMethod asmMethod)
-
setCompiled
void setCompiled(boolean compiled)
-
isCompiled
boolean isCompiled()
-
addAssembly
void addAssembly(AssemblyMethod asmMethod)
-
setSelectedCompilation
void setSelectedCompilation(int index)
-
getSelectedCompilation
Compilation getSelectedCompilation()
-
getCompilations
java.util.List<Compilation> getCompilations()
-
getCompilation
Compilation getCompilation(int index)
-
getLastCompilation
Compilation getLastCompilation()
-
getSourceMethodSignatureRegEx
java.lang.String getSourceMethodSignatureRegEx()
-
-