I have changed some resource, when i click on it in Eclipse i get info "Resource is out of sync", how can I refresh it? i tried org.eclipse.core.resources.IResource.touch(IProgressMonitor), but it does not help

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

If you have an IResource for the changed resource/project, you might want to call refreshLocal on it. However, if you did the modifications programmatically yourself (e.g. through java.io), you might want to change your code to do the modifications using the Eclipse IResource API, so that Eclipse can keep track of the modifications itself.

Update to elaborate on the Eclipse API:

Instead of e.g. creating a new FileOutputStream by specifying the file-path, your plugin should create the file (a resource) using the Eclipse API, e.g. by calling project.create("file") relative to the current project (you can easily for example obtain the currently selected file or project in the Eclipse project explorer).

link|improve this answer
thx, a lot. it works great. What do you mean by IResource API? Do you mean to somehow get IDocument and change it like that? I used java.io, because it was faster to write. – IAdapter Jan 11 '11 at 13:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.