1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Operation is readOnly

This commit is contained in:
Alain Magloire 2005-07-08 21:40:08 +00:00
parent 992e64134b
commit c9c3c46bb9

View file

@ -22,6 +22,15 @@ public class PathEntryStoreChangedOperation extends CModelOperation {
super(cproject);
}
/* (non-Javadoc)
* @see org.eclipse.cdt.internal.core.model.CModelOperation#isReadOnly()
*/
public boolean isReadOnly() {
return true;
}
protected void executeOperation() throws CModelException {
PathEntryManager manager = PathEntryManager.getDefault();
ICProject cproject = (ICProject)getElementToProcess();