user3600620
user3600620

Reputation: 31

How to show simulation time using Java in Eclipse?

I've been asked to add a clock that displays the simulation time in my application. How can it be done?

Upvotes: 1

Views: 219

Answers (1)

M. A. Kishawy
M. A. Kishawy

Reputation: 5079

If I understande you correctly, you are aiming at profiling your application performance. If that is what you are trying to do, then why don't you use a plugin for that instead of building your own?

Here is a plugin that can help you with your task http://www.eclipse.org/articles/Article-TPTP-Profiling-Tool/tptpProfilingArticle.html

Well it is more like a suite addresses the entire test and performance life cycle

Also try this one as well: https://code.google.com/a/eclipselabs.org/p/jvmmonitor/

and you can always search in the eclipse market place for plugins of this kind here: http://marketplace.eclipse.org/

However you can also make your code measure its own speed/time. If this is just a personal project you are using to learn, it might not be such a bad idea as well.

Upvotes: 2

Related Questions