View Javadoc
1 package jrre.api.java.lang.reflect; 2 3 public class Interfaces{ 4 5 private int size; 6 private int [] interfaceOffsets; 7 8 public Interfaces(int [] interfaceOffsets){ 9 size = interfaceOffsets.length; 10 this.interfaceOffsets = interfaceOffsets; 11 } 12 13 public String toString(){ 14 String toReturn = "Interface Offsets: \n"; 15 for(int i = 0;i < size;i++){ 16 toReturn += "\t" + interfaceOffsets[i] + "\n"; 17 } 18 return toReturn; 19 } 20 21 }

This page was automatically generated by Maven