You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, many attributes use a raw byte[] dummy implementation, which works for IO purposes... but this does not allow users to explore the class using Cafedude's defined types and restricts the ability to parse things in detail.
The text was updated successfully, but these errors were encountered:
Find the relevant section on the class file spec page and check what order of u1, u2, u4 etc (Example: LineNumberTable)
Create the class in me/coley/cafedude/attribute
Fill out the switch-case in the reader class to construct a new instance of the attribute class
Fill out the switch-case in the writer class to write back an instance of the attribute to the output stream
Verify that the test class EqualityIOTest passes, which means the read/writes are identical
I was working a bit on the develop branch for annotation processing. It includes some refactoring so you may want to branch off of it instead of master.
Currently, many attributes use a raw
byte[]
dummy implementation, which works for IO purposes... but this does not allow users to explore the class using Cafedude's defined types and restricts the ability to parse things in detail.The text was updated successfully, but these errors were encountered: