View Javadoc
1 package jrre.classloader.classfile.attributes; 2 3 public class Attribute{ 4 5 protected int nameIndex; 6 protected int attributeLength; 7 8 public Attribute(){} 9 10 public Attribute(int nameIndex, int attributeLength){ 11 this.nameIndex = nameIndex; 12 this.attributeLength = attributeLength; 13 } 14 15 }

This page was automatically generated by Maven