OrhanC1
OrhanC1

Reputation: 1410

Does refreshing in Eclipse also Clean the project?

I hope the question isn't too vague but I was wondering if running 'Refresh' also calls 'Clean'.

Does running 'Clean' run 'Refresh' ?

Upvotes: 4

Views: 585

Answers (2)

Shivan Dragon
Shivan Dragon

Reputation: 15219

Nope, it does not. Refresh reloads the last version of your project's files (like, if you modified something outside of eclipse, you need to refresh in eclipse to have the new modif show up). Clean on the other hand deletes all the compiled files and recompiles your project's sources

Upvotes: 6

Mene
Mene

Reputation: 3799

No, it doesn't. Eclipse reads the files from the file system and buffers them. Refresh only tells eclipse to reread the files.

Upvotes: 3

Related Questions