Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 771 → Rev 772

/sun/xmleditor/trunk/src/parser/Validator.java
4,10 → 4,10
* Coded by: Group 5, software practice summer 2003
* University of Bielefeld, Germany
*
* @version $Revision: 1.49 $
* @version $Revision: 1.50 $
*
* Last modification: $Date: 2003/07/22 18:59:42 $
* $Id: Validator.java,v 1.49 2003/07/22 18:59:42 smcsporr Exp $
* Last modification: $Date: 2003/07/24 13:56:26 $
* $Id: Validator.java,v 1.50 2003/07/24 13:56:26 smcsporr Exp $
*/
 
package src.parser;
57,7 → 57,7
*
* @author S. McSporran
*
* @version $Revision: 1.49 $ Last modification: $Date: 2003/07/22 18:59:42 $
* @version $Revision: 1.50 $ Last modification: $Date: 2003/07/24 13:56:26 $
*/
public class Validator {
 
98,9 → 98,15
* if Xerces isn't available. Please note that Xerces is required to ensure full
* functionality.
*
* @param logI: A reference to a log panel implementation.
* @param statI: A reference to a status panel implementation.
* The SAX parser will have the following features enabled by default:
*
* - namespace processing
* - validation
* - schema validation
*
* @param logI A reference to a log panel implementation.
* @param statI A reference to a status panel implementation.
*
* @see org.xml.sax.XMLReader
* @see src.gui.LogInterface
* @see src.gui.StatusInterface
363,7 → 369,7
/**
* This method validates a DOM document object.
*
* @param doc: The document to be validated.
* @param doc The document to be validated.
*
* @return <code>true</code>, if the document fits to it's specified grammar,
* <code>false</code> otherwise.
441,7 → 447,7
/**
* This method validates an <code>InputStream</code>.
*
* @param inStream: The stream to be validated.
* @param inStream The stream to be validated.
* @return Returns <code>true</code>, if the stream is valid.
*
* author S. McSporran
496,7 → 502,7
* 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 compliant to src.gui.LogInterface.
*
* author S. McSporran
*