public class ClassTree extends Object
| Constructor and Description |
|---|
ClassTree(org.objectweb.asm.tree.ClassNode rawNode) |
| Modifier and Type | Method and Description |
|---|---|
List<org.objectweb.asm.tree.AnnotationNode> |
annotations() |
Set<Integer> |
codeLineNumbers() |
static ClassTree |
fromBytes(byte[] bytes) |
boolean |
isAbstract() |
boolean |
isInterface() |
boolean |
isSynthetic() |
Optional<MethodTree> |
method(Location loc) |
List<MethodTree> |
methods() |
ClassName |
name() |
int |
numberOfCodeLines() |
org.objectweb.asm.tree.ClassNode |
rawNode() |
Stream<MethodTree> |
realMethods()
Methods, excluding bridges and synthetics
|
List<org.objectweb.asm.tree.RecordComponentNode> |
recordComponents() |
ClassTree |
rename(ClassName name) |
byte[] |
toBytes() |
String |
toString() |
public static ClassTree fromBytes(byte[] bytes)
public byte[] toBytes()
public List<MethodTree> methods()
public Optional<MethodTree> method(Location loc)
public List<org.objectweb.asm.tree.AnnotationNode> annotations()
public List<org.objectweb.asm.tree.RecordComponentNode> recordComponents()
public ClassName name()
public org.objectweb.asm.tree.ClassNode rawNode()
public int numberOfCodeLines()
public Stream<MethodTree> realMethods()
public boolean isAbstract()
public boolean isInterface()
public boolean isSynthetic()
Copyright © 2024 org.pitest. All rights reserved.