Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 643 → Rev 644

/sun/xmleditor/trunk/src/gui/UpdateView.java
4,10 → 4,10
* Coded by: Group 5, software practice summer 2003
* University of Bielefeld, Germany
*
* @version $Revision: 1.39 $
* @version $Revision: 1.40 $
*
* Last modification: $Date: 2003/07/19 13:14:10 $
* $Id: UpdateView.java,v 1.39 2003/07/19 13:14:10 cstollen Exp $
* Last modification: $Date: 2003/07/19 13:20:40 $
* $Id: UpdateView.java,v 1.40 2003/07/19 13:20:40 cstollen Exp $
*/
 
package src.gui;
47,7 → 47,7
*
* @author Christian Stollenwerk
*
* @version $Revision: 1.39 $ Last modification: $Date: 2003/07/19 13:14:10 $
* @version $Revision: 1.40 $ Last modification: $Date: 2003/07/19 13:20:40 $
*/
public class UpdateView implements ActionListener, UpdateViewInterface,
OurEventListener, TreeModelListener, TreeExpansionListener {
157,7 → 157,9
treeVisibleList = documentManagerInterface.getActualVisibleTree();
System.out.println("treeVisibleList = " + treeVisibleList);
if(treeVisibleList != null) {
System.out.println("treeVisibleList.hasMoreElements() = " + treeVisibleList.hasMoreElements());
while(treeVisibleList.hasMoreElements()) {
System.out.println("makeVisible " + (TreePath)treeVisibleList.nextElement());
newPopUpJTree.makeVisible((TreePath)treeVisibleList.nextElement());
}
}