Commit e65006ac authored by Pakulin's avatar Pakulin
Browse files

Updated the XmlDiff constructor

parent 9b404359
Loading
Loading
Loading
Loading
+7 −2
Original line number Original line Diff line number Diff line
@@ -9,12 +9,17 @@ package org.etsi.mts.ttcn.part9.xmldiff;
public class XmlDiff {
public class XmlDiff {
	/** Initialize the diff engine.
	/** Initialize the diff engine.
	 * 
	 * 
	 * @param referenceXmlFile path to the reference XML file
	 * If {@code xsdFileNames} is <code>null</code> then the value of {@code xsdSearchPath}
	 * is ignored.
	 * 
	 * 
	 * @param referenceXmlFile path to the reference XML file
	 * @param xsdFileNames optional list of XSD files relevant for the reference XML file.
	 * 	May be <code>null</code>.
	 * @param xsdSearchPath optional list of folder names and/or URIs where to look for XSD files. 
	 * @param xsdSearchPath optional list of folder names and/or URIs where to look for XSD files. 
	 * 	May be <code>null</code>.
	 * 	May be <code>null</code>.
	 * 
	 */
	 */
	public XmlDiff(String referenceXmlFile, String[] xsdSearchPath) {
	public XmlDiff(String referenceXmlFile, String[] xsdFileNames, String[] xsdSearchPath) {
		
		
	}
	}