Artifact 4b9f25626ee518a311832ae6d3ec668a0f383d44b1e7403880e672ee246f894f:
- Executable file
r37/lisp/csl/jlisp/Attribute_info.java
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 511) [annotate] [blame] [check-ins using] [more...]
public class Attribute_info { static short attributes_count; short attribute_name_index; int attribute_length; byte info[]; //should be [attribute_length] byte[] dumpBytes() { byte[][] Bytes = new byte[3][0]; Bytes[0] = ByteArray.shortToByteArray(attribute_name_index); Bytes[1] = ByteArray.intToByteArray(attribute_length); Bytes[2] = info; return ByteArray.flatBytes(Bytes); } } // end of Attribute_info.java