| Introduction | How to use | ClassLoader | Serialization | Reflection | Attributes | Mechanism |
Reflection is the ability to get information about the construction
of an Object at runtime. ACDK supports Refection in the Java like manner.
ACDK holds all available information about ACDK compatible classes
in C structures generated by acdkmc. The user can access this repository
directly through the classes acdk::lang::dmi::ClazzInfo,
acdk::lang::dmi::ClazzFieldInfo, acdk::lang::dmi::ClazzMethodInfo,
acdk::lang::dmi::ClazzMethodArgInfo.
To access the repository directly is way with the most performance and are
also used in all DMI related implementations.
In the namespace acdk::lang::reflect the classes known
from Java are provided.
|