Searched defs:BinaryAttribute (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DBinaryAttribute.java41 class BinaryAttribute implements Constants { class in inherits:Constants
44 BinaryAttribute next;
49 BinaryAttribute(Identifier name, byte data[], BinaryAttribute next) { method in class:BinaryAttribute
58 public static BinaryAttribute load(DataInputStream in, BinaryConstantPool cpool, int mask) throws IOException {
59 BinaryAttribute atts = null;
73 atts = new BinaryAttribute(id, data, atts);
81 static void write(BinaryAttribute attributes, DataOutputStream out,
85 for (BinaryAttribute att = attributes; att != null; att = att.next)
90 for (BinaryAttribute at
[all...]

Completed in 29 milliseconds