com.github.anilople.javajvm.classfile.attributes.MethodParametersAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javajvm Show documentation
Show all versions of javajvm Show documentation
Use Java to Implement JVM
The newest version!
package com.github.anilople.javajvm.classfile.attributes;
import com.github.anilople.javajvm.classfile.ClassFile;
public class MethodParametersAttribute extends AttributeInfo {
public MethodParametersAttribute(ClassFile classFile, short attributeNameIndex, int attributeLength, byte[] info) {
super(classFile, attributeNameIndex, attributeLength, info);
}
}