Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 727 → Rev 728

/sun/xmleditor/trunk/src/control/DocumentManagerInterface.java
4,10 → 4,10
* Coded by: Group 5, software practice summer 2003
* University of Bielefeld, Germany
*
* @version $Revision: 1.23 $
* @version $Revision: 1.24 $
*
* Last modification: $Date: 2003/07/22 13:33:44 $
* $Id: DocumentManagerInterface.java,v 1.23 2003/07/22 13:33:44 cstollen Exp $
* Last modification: $Date: 2003/07/22 14:11:44 $
* $Id: DocumentManagerInterface.java,v 1.24 2003/07/22 14:11:44 smcsporr Exp $
*/
 
package src.control;
22,7 → 22,7
* This interface describes the functionality, which an implementation of a
* document manager must provide.
*
* @version $Revision: 1.23 $ Last modification: $Date: 2003/07/22 13:33:44 $
* @version $Revision: 1.24 $ Last modification: $Date: 2003/07/22 14:11:44 $
*/
public interface DocumentManagerInterface {
 
41,7 → 41,6
/**
* The method <code>closeActualDocument</code> is used to remove an open document
* from the internal document list and to update the program display afterwards.
*
*/
public void closeActualDocument();
72,9 → 71,9
/**
* The method <code>setActualVisibleTree</code> sets
* a <code>Vector</code> of the visible <code>TreePath</code>s.
* a <code>LinkedList</code> of the visible <code>TreePath</code>s.
*
* @param en: An <code>LinkedList</code> of <code>TreePath</code> objects.
* @param en: A <code>LinkedList</code> of <code>TreePath</code> objects.
*
* @see javax.swing.tree.TreePath
* @see java.util.LinkedList
88,7 → 87,7
* @return LinkedList of the TreePath objects
*
* @see javax.swing.tree.TreePath
* @see java.util.LikedList
* @see java.util.LinkedList
*/
public LinkedList getActualVisibleTree();