Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Newcomers » Newcomers » How can I get the start date/time of the current Eclipse session
How can I get the start date/time of the current Eclipse session [message #214688] Fri, 08 June 2007 16:27 Go to next message
Eclipse UserFriend
Originally posted by: isafer.cs.ubc.ca

Hi there,

Which method should I call to get the start date/time of the current Eclipse
session?

Thanks,
isar
Re: How can I get the start date/time of the current Eclipse session [message #214710 is a reply to message #214688] Sat, 09 June 2007 07:38 Go to previous message
Eclipse UserFriend
Originally posted by: news.pellaton.li

Hi Isar

System.getProperty("eclipse.startTime");

You can list all available properties using:

Iterator it = System.getProperties().keySet().iterator();
while (it.hasNext()) {
String key = (String) it.next();
System.err.println((String) key + ": " + System.getProperty(key));
}

HTH

Michael
Previous Topic:eclipse/cdt static library compile problem
Next Topic:adding support for a new language, needing help for AST
Goto Forum:
  


Current Time: Fri Apr 26 07:12:27 GMT 2024

Powered by FUDForum. Page generated in 0.08598 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top