exposing on-the-fly switchability between pre and post order iterors in the interface. exposing PositionAt in the interface.

This commit is contained in:
jfrancis%netscape.com 1999-03-23 11:54:52 +00:00
Родитель c19d197e95
Коммит eaed4a3df3
2 изменённых файлов: 24 добавлений и 0 удалений

Просмотреть файл

@ -68,6 +68,18 @@ public:
*/
NS_IMETHOD IsDone()=0;
/** PositionAt will position the iterator to the supplied node
*/
NS_IMETHOD PositionAt(nsIContent* aCurNode)=0;
/** MakePre will make the iterator a pre-order iterator
*/
NS_IMETHOD MakePre()=0;
/** MakePost will make the iterator a post-order iterator
*/
NS_IMETHOD MakePost()=0;
};

Просмотреть файл

@ -68,6 +68,18 @@ public:
*/
NS_IMETHOD IsDone()=0;
/** PositionAt will position the iterator to the supplied node
*/
NS_IMETHOD PositionAt(nsIContent* aCurNode)=0;
/** MakePre will make the iterator a pre-order iterator
*/
NS_IMETHOD MakePre()=0;
/** MakePost will make the iterator a post-order iterator
*/
NS_IMETHOD MakePost()=0;
};