Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 769 → Rev 770

/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.15 $
* @version $Revision: 1.16 $
*
* Last modification: $Date: 2003/07/22 17:55:51 $
* $Id: ViewFilter.java,v 1.15 2003/07/22 17:55:51 smcsporr Exp $
* Last modification: $Date: 2003/07/22 17:56:26 $
* $Id: ViewFilter.java,v 1.16 2003/07/22 17:56:26 smcsporr Exp $
*/
package src.document;
25,7 → 25,7
*
* @author Christian Stollenwerk
*
* @version $Revision: 1.15 $ Last modification: $Date: 2003/07/22 17:55:51 $
* @version $Revision: 1.16 $ Last modification: $Date: 2003/07/22 17:56:26 $
*/
public class ViewFilter {
72,15 → 72,14
}
/**
* Sets a reference to a log panel that implements src.gui.LogInterface.
* This method sets an internal reference to the log panel that is used to
* output logging messages to inform the user about program events.
*
* @param log: A log panel implementation compliant to src.gui.LogInterface.
*
* @param log: A log panel implementation that implements src.gui.LogInterface.
*
* @see src.gui.LogInterface
* author S. McSporran
*
* author Group 5
*
* Last revision: 08-Jul-2003
* Last Revision: 11-Jul-2003
*/
public void setLogInterface(LogInterface logInt) {
logInterfaceReference = logInt;
/sun/xmleditor/trunk/src/document/OurDocument.java
4,10 → 4,10
* Coded by: Group 5, software practice summer 2003
* University of Bielefeld, Germany
*
* @version $Revision: 1.58 $
* @version $Revision: 1.59 $
*
* Last modification: $Date: 2003/07/23 15:39:51 $
* $Id: OurDocument.java,v 1.58 2003/07/23 15:39:51 hjokusch Exp $
* Last modification: $Date: 2003/07/24 13:05:42 $
* $Id: OurDocument.java,v 1.59 2003/07/24 13:05:42 smcsporr Exp $
*/
package src.document;
43,7 → 43,7
*
* @author S. McSporran
*
* @version $Revision: 1.58 $ Last modification: $Date: 2003/07/23 15:39:51 $
* @version $Revision: 1.59 $ Last modification: $Date: 2003/07/24 13:05:42 $
*/
public class OurDocument {
152,12 → 152,14
}
/**
* This method sets an internal reference to the log panel for
* giving log messages correctly the the gui's logPanel.
* This method sets an internal reference to the log panel that is used to
* output logging messages to inform the user about program events.
*
* @param log: A log panel implementation compliant to src.gui.LogInterface.
*
* author S. McSporran
*
* Last revision: 24-Jun-2003
* Last Revision: 11-Jul-2003
*/
public void setLogInterface(LogInterface log) {
LogInterfaceReference = log;