1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
<?xml version="1.0"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
<book id="index" xmlns:xi="http://www.w3.org/2001/XInclude">
<bookinfo>
<title>LibJClass Reference Manual</title>
<abstract>
<title>Overview</title>
<para>libjclass is a library for reading java class files. It was designed
with portability as one of the main goals and it should work on most
modern Unix and Unix-like platforms.
It is also available for Microsoft Windows.
</para>
<para>
Many times you will need to access various structs directly to get things done.
Suggestions on additional functions are always welcome.
</para>
</abstract>
</bookinfo>
<xi:include href="overview.xml"/>
<chapter>
<title>Fundamentals</title>
<xi:include href="xml/types.xml"/>
<xi:include href="xml/jstring.xml"/>
</chapter>
<chapter>
<title>API Reference</title>
<xi:include href="xml/class.xml"/>
<xi:include href="xml/constant_pool.xml"/>
<xi:include href="xml/field.xml"/>
<xi:include href="xml/attributes.xml"/>
<xi:include href="xml/bytecode.xml"/>
<xi:include href="xml/class_loader.xml"/>
<xi:include href="xml/jar.xml"/>
<xi:include href="xml/manifest.xml"/>
</chapter>
</book>
|