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

isReadOnly() always return true.

This commit is contained in:
Alain Magloire 2003-04-29 19:45:37 +00:00
parent 28d9063585
commit 47d57846c6

View file

@ -39,6 +39,13 @@ public class Archive extends Openable implements IArchive {
return b;
}
/* (non-Javadoc)
* @see org.eclipse.cdt.core.model.ICElement#isReadOnly()
*/
public boolean isReadOnly() {
return true;
}
public CElementInfo createElementInfo() {
return new ArchiveInfo(this);
}