Class BytecodeMethodProperties
- java.lang.Object
-
- org.eolang.jeo.representation.bytecode.BytecodeMethodProperties
-
-
Constructor Summary
Constructors Constructor Description BytecodeMethodProperties(int access, String name, String descriptor, String signature, String... exceptions)Constructor.BytecodeMethodProperties(String name, String descriptor, int... modifiers)Constructor.BytecodeMethodProperties(String name, String descriptor, String signature, int... modifiers)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisAbstract()Is method abstract.StringtestCode()Generate test Java code.
-
-
-
Constructor Detail
-
BytecodeMethodProperties
public BytecodeMethodProperties(String name, String descriptor, int... modifiers)
Constructor.- Parameters:
name- Method name.descriptor- Method descriptor.modifiers- Access modifiers.
-
BytecodeMethodProperties
public BytecodeMethodProperties(String name, String descriptor, String signature, int... modifiers)
Constructor.- Parameters:
name- Method name.descriptor- Method descriptor.signature- Method signature.modifiers- Access modifiers.
-
BytecodeMethodProperties
public BytecodeMethodProperties(int access, String name, String descriptor, String signature, String... exceptions)Constructor.- Parameters:
access- Access modifiers.name- Method name.descriptor- Method descriptor.signature- Method signature.exceptions- Method exceptions.
-
-