Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 723 → Rev 724

/sun/xmleditor/trunk/src/document/DocumentFactory.java
4,10 → 4,10
* Coded by: Group 5, software practice summer 2003
* University of Bielefeld, Germany
*
* @version $Revision: 1.12 $
* @version $Revision: 1.13 $
*
* Last modification: $Date: 2003/07/21 15:33:50 $
* $Id: DocumentFactory.java,v 1.12 2003/07/21 15:33:50 hjokusch Exp $
* Last modification: $Date: 2003/07/21 17:43:36 $
* $Id: DocumentFactory.java,v 1.13 2003/07/21 17:43:36 smcsporr Exp $
*/
package src.document;
 
14,13 → 14,14
import src.gui.*;
 
/**
* This class is used to make new instances of the <code>OurDocument</code> class.
* A <b><code>DocumentFactory</code></b> instance is used to make new instances
* of the <code>OurDocument</code> class.
*
* @see src.document.OurDocument
*
* @author H. Jakusch
*
* @version $Revision: 1.12 $ Last modification: $Date: 2003/07/21 15:33:50 $
* @version $Revision: 1.13 $ Last modification: $Date: 2003/07/21 17:43:36 $
*/
public class DocumentFactory {
48,16 → 49,14
* @param noEmptyDocument: <code>true</code> if no empty document should be made, false if an
* empty document should be made.
*/
public void makeDocument(boolean noEmptyDocument)
{
public void makeDocument(boolean noEmptyDocument) {
if (noEmptyDocument == true){
OurDocument newDocument = new OurDocument(logInterfaceReference);
workingDocument = newDocument;
} else {
OurDocument newDocument = new OurDocument(logInterfaceReference);
workingDocument = newDocument;
}
else {
OurDocument newDocument = new OurDocument(logInterfaceReference);
workingDocument = newDocument;
}
}
/* Sends messages to the log panel. */
/sun/xmleditor/trunk/src/document/Tree.java
4,10 → 4,10
* Coded by: Group 5, software practice summer 2003
* University of Bielefeld, Germany
*
* @version $Revision: 1.4 $
* @version $Revision: 1.5 $
*
* Last modification: $Date: 2003/07/16 19:27:05 $
* $Id: Tree.java,v 1.4 2003/07/16 19:27:05 smcsporr Exp $
* Last modification: $Date: 2003/07/17 14:48:00 $
* $Id: Tree.java,v 1.5 2003/07/17 14:48:00 smcsporr Exp $
*/
package src.document;
20,12 → 20,12
*
* @author Christian Stollenwerk
*
* @version $Revision: 1.4 $ Last modification: $Date: 2003/07/16 19:27:05 $
* @version $Revision: 1.5 $ Last modification: $Date: 2003/07/17 14:48:00 $
*/
public class Tree {
/**
* The class' constructor creates a new <code>TreeModel</code> from
* The class constructor creates a new <code>TreeModel</code> from
* a document by using functionality provided by the src.parser.AdapterDomToTreeModel
* class.
*
/sun/xmleditor/trunk/src/document/ViewFilter.java
4,10 → 4,10
* Coded by: Group 5, software practice summer 2003
* University of Bielefeld, Germany
*
* @version $Revision: 1.14 $
* @version $Revision: 1.15 $
*
* Last modification: $Date: 2003/07/22 14:11:39 $
* $Id: ViewFilter.java,v 1.14 2003/07/22 14:11:39 smcsporr Exp $
* Last modification: $Date: 2003/07/22 17:55:51 $
* $Id: ViewFilter.java,v 1.15 2003/07/22 17:55:51 smcsporr Exp $
*/
package src.document;
20,12 → 20,12
import src.gui.LogInterface;
 
/**
* The <code>ViewFilter</code> class is a filter object that might be used
* The <b><code>ViewFilter</code><b> class is a filter object that might be used
* for filtering the nodes of a DOM document with a specified XPath expression.
*
* @author Christian Stollenwerk
*
* @version $Revision: 1.14 $ Last modification: $Date: 2003/07/22 14:11:39 $
* @version $Revision: 1.15 $ Last modification: $Date: 2003/07/22 17:55:51 $
*/
public class ViewFilter {