I have a jar file : "CallMeMaybe.jar".
There is a static method callMe() in the main class callmemaybe.CallMeMaybe . Like it is possible to call the main() method from command line by running :
java -cp CallMeMaybe.jar callmemaybe.CallMeMaybe
Is there a way to directly call another static method than main() ?
I would like to do that :
java -cp CallMeMaybe.jar callmemaybe.CallMeMaybe.callMe()
main, is the main entry point. Is there amainmethod anywhere in there?