Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 708 → Rev 709

/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.21 $
* @version $Revision: 1.22 $
*
* Last modification: $Date: 2003/07/21 17:55:05 $
* $Id: DocumentManagerInterface.java,v 1.21 2003/07/21 17:55:05 smcsporr Exp $
* Last modification: $Date: 2003/07/22 11:55:38 $
* $Id: DocumentManagerInterface.java,v 1.22 2003/07/22 11:55:38 hjokusch 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.21 $ Last modification: $Date: 2003/07/21 17:55:05 $
* @version $Revision: 1.22 $ Last modification: $Date: 2003/07/22 11:55:38 $
*/
public interface DocumentManagerInterface {
 
92,6 → 92,20
*/
public LinkedList getActualVisibleTree();
/**
* The methode <code>setExpression</code> sets the xpathExpression to save the actual XPath expression
*
* @param expression the XPath expression
*/
public void setExpression(String expression);
/**
* The methode <code>getExpression</code> return the actual XPath expression
*
* @return the XPath expression set
*/
public String getExpression();
 
/**
* This method displays a <code>JFileChooser</code> and parses a file if the user
* chooses one.