1 package alt.jiapi.file; 2 3 import java.io.ByteArrayOutputStream ; 4 import java.io.DataInputStream ; 5 import java.io.DataOutputStream ; 6 import java.io.IOException ; 7 import java.util.List ; 8 import java.util.LinkedList ; 9 import java.util.Iterator ; 10 11 17 public class DeprecatedAttribute extends Attribute { 18 private byte[] bytes = new byte[0]; 19 DeprecatedAttribute(short nameIndex, DataInputStream dis) throws IOException { 20 super(nameIndex); 21 } 22 23 public byte[] getBytes() { 24 return bytes; 25 } 26 } 27 28 | Popular Tags |