Robin
Robin

Reputation: 3850

Eclipse Plugin Development - Reload Plugin Changes without restarting

I just started to develop an Eclipse Plugin. I run the plugin as EclipseApplication. When I make a change in my code I currently have to exit the EclipseApplication and restart it.

Isn't there some hot switching without restarting eclipse all the time?

Upvotes: 2

Views: 645

Answers (1)

Xavier Coulon
Xavier Coulon

Reputation: 1600

Eclipse can reload the classes (with some limitations - eg: method signature changes, etc.) if you start your runtime workspace in Debug mode

Upvotes: 5

Related Questions