java - How to find "public static void main" or the start of a program? -
i working on open source project, 10kloc, , know program starts. naturally, think should search "public static void main". using eclipse. know how find this?
i tried using search function in eclipse, not finding match. search configuration incorrect, or there better way find method?
any other suggestions finding start of program welcome.
edit: eclipse plug-in, running eclipse pde.
not programs start main method. if java ee app services, eclipse plugin, starting point can anywhere.
if have done search "main" , found nothing, probaly should start debugging. put breakpoints in beginning of every method looks might startpoint.
breakpoints in constructors idea, since program start instantiating classes.
Comments
Post a Comment