Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 675 → Rev 676

/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.16 $
* @version $Revision: 1.17 $
*
* Last modification: $Date: 2003/07/19 12:45:00 $
* $Id: DocumentManagerInterface.java,v 1.16 2003/07/19 12:45:00 hjokusch Exp $
* Last modification: $Date: 2003/07/21 13:51:17 $
* $Id: DocumentManagerInterface.java,v 1.17 2003/07/21 13:51:17 hjokusch Exp $
*/
 
package src.control;
84,28 → 84,24
public void closeAll();
/**
* The methode <code> setActualVisibleTree </code> sets
* a Vector of the visible TreePaths(<code> TreePath</code>)
* The method <code>setActualVisibleTree</code> sets
* a <code>Vector</code> of the visible TreePaths(<code> TreePath</code>)
*
* @param en: An <code>Enumeration</code> of <code>TreePath</code> objects.
*
* @see javax.swing.tree.TreePath
* @see java.util.Enumeration;
*
* @param en: Enumeration of the TreePath objects
*
* author Group 5
* @see java.util.Enumeration
*/
public void setActualVisibleTree(Enumeration en);
/**
* The methode <code> setActualVisibleTree </code> returns
* a <code>Enumeration </code> of the visible TreePaths(<code> TreePath</code>)
* an <code>Enumeration</code> of the visible <code>TreePath</code>s.
*
* @see javax.swing.tree.TreePath;
* @see java.util.Enumeration;
*
* @return Enumeration of the TreePath objects
*
* author Group 5
*
* @see javax.swing.tree.TreePath
* @see java.util.Enumeration
*/
public Enumeration getActualVisibleTree();
115,8 → 111,6
*
* @return Returns <code>true</code>, if a file has been chosen, false otherwise.
*
* author Group 5
*
* Last revision: 08-Jul-2003
*/
public boolean loadDocument();
123,8 → 117,6
/**
* <code>setNewDTD</code> launches a method that changes a document's DTD grammar.
*
* author S. McSporran
*
* Last revision: 11-Jul-2003
*/
133,19 → 125,15
/**
* <code>setNewSchema</code> launches a method that changes a document's XML schema.
*
* author S. McSporran
*
* Last revision: 14-Jul-2003
*/
public void setNewSchema();
/**
* The methode <code> makeNewDocument</code> cause that a
* new document will appear. The user will have to choose grammar file:
* a DTD or a XML schema;
/**
* <code>makeNewDocument</code> creates a new <code>OurDocument</code> object and
* adds it to an internal document list.
*
* author Group 5
*
* Last revision: 10-Jul-2003
*/
public void makeNewDocument();
154,8 → 142,6
* This is a kind of a quicksave function and can only be used if the corresponding
* file name of the current document is available.
*
* author S. McSporran
*
* Last revision: 08-Jul-2003
*/
public void saveActualDocument();
164,32 → 150,29
* <code>saveActualDocumentAs</code> saves the active document in a specified file
* chosen by the user.
*
* author S. McSporran
*
* Last revision: 08-Jul-2003
*/
public void saveActualDocumentAs();
/**
* The methode <code> setDocument </code> gives the actual Document a
* The method <code>setDocument</code> gives the actual Document a
* XML document as <code>DocumentImpl</code>
*
* @see org.apache.xerces.dom.DocumentImpl;
* @param docu: A XML document as <code>DocumentImpl</code>.
*
* @param docu: a XML DOcument as <code> DocumentImpl</code>
* @see org.apache.xerces.dom.DocumentImpl
*
* author H.Jakusch
* Last revision: 21-Jul-2003
*/
public void setDocument(DocumentImpl docu);
 
/**
* <code>actualDocumentChanged</code> returns true, if the
* actual Document is Changed and not saved; otherwise it return false
*
* author H. Jakusch
*
* Last revision: 18-Jul-2003
*/
/**
* This method checks, if the actual Document has been changed and not saved.
*
* @return <code>true</code> if document has been changed, <code>false</code> otherwise.
*
* Last revision: 21-Jul-2003
*/
public boolean actualDocumentChanged();
 
/**