B4A Library Object Introspection

Ich habe eine Bibliothek zur schnellen Objekt-Introspektion für die Verwendung in b4a-Projekten zusammengestellt. Bevor hier Kritik erhoben wird, dass eine IDE dies erledige, sei angemerkt, dass Entwickler sehr viel Zeit damit verbringen, ihre Klassen zu testen und Fehler zu suchen. Dies kleine Tool kann einem dabei helfen, vor allem Zeit einzusparen, indem es einen schnellen Überblick verschafft.

Inspector is as small library for rapid object introspection. It gives you a quick overview of an object tree's contents.

Installing
Is as easy as possible. Just save the jar and the doclet from the attaching zip into the b4a library folder and restart your project.
Activate the introspector library at the Libs tab.

Only these two lines of code are need to write an object tree to the log window.
PHP:
   Dim Inspect As Inspector // put it to your Globals

   Log(Inspect.getInspect(put your object here))
 

Attachments

  • Inspector.zip
    11.1 KB · Views: 264
Top