afpdev / alpheusafpparser

Library & parser for IBM Advanced Function Presentation (AFP) document/print stream format
GNU General Public License v3.0
16 stars 11 forks source link

Realizing shallow structured fields #2

Closed michaelknigge closed 8 years ago

michaelknigge commented 8 years ago

The JavaDoc of method AFPParserConfiguration.isBuildShallow() states that a structured field can be read as a shallow structured field and than, later if needed, "fully parsed" with StructuredField.realize().

Where is this realize() method? Isn't it realized yet or does it have another name that I can not find?

Thanks, Michael

afpdev commented 8 years ago

The documentation of AFPParserConfiguration.isBuildShallow() is wrong. The method StructuredField.realize() doesn't exist. Use AFPParser.reload(sf) to "fully parse" a shallow structured field.

BR afpdev

afpdev commented 8 years ago

I changed the JavaDoc of method AFPParserConfiguration.isBuildShallow()

BR afpdev