Being a eclipse plugin development programmer, we need to perform certain operations based on the mode you working on.
Eclipse provides a way to identify whether your eclipse is running in debug mode or development mode.
Eclipse provides a way to identify whether your eclipse is running in debug mode or development mode.
if (Platform.inDevelopmentMode()) //it will look for osgi.dev property
{
//you are running in development mode.
}
if (Platform.inDebugMode()) //it will look for osgi.debug property
{
//you are running in debug mode.
}
No comments:
Post a Comment