1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 03:53:21 +02:00

CModelBuilder and scalability problems

This commit is contained in:
Hoda Amer 2004-04-16 19:56:58 +00:00
parent 42bb6673a1
commit 66678f3126
2 changed files with 3 additions and 15 deletions

View file

@ -1,3 +1,6 @@
2004-04-16 Hoda Amer
Reveresed a change in IParent caused by my previous patch.
2004-04-16 Alain Magloire
Patch from Sam Robb to cover PR 52864

View file

@ -35,19 +35,4 @@ public interface IParent {
*/
boolean hasChildren();
/**
* Adds a child to the current element.
* Implementations override this method to support children
*/
void addChild(ICElement member);
/**
* Removes a child from the current element children list.
* @param member
*/
void removeChild(ICElement member);
/**
* Clears the element's children list.
*
*/
void removeChildren ();
}