Revision 12311 trunk/libraries/libGPE/src-test/org/gvsig/xmlschema/writer/WriterBaseTest.java

View differences:

WriterBaseTest.java
10 10

  
11 11
import org.gvsig.xmlschema.exceptions.SchemaCreationException;
12 12
import org.gvsig.xmlschema.exceptions.SchemaWrittingException;
13
import org.gvsig.xmlschema.exceptions.TypeNotFoundException;
14 13
import org.gvsig.xmlschema.som.IXSSchema;
15 14
import org.gvsig.xmlschema.utils.DOMObjectsFactory;
16 15
import org.gvsig.xmlschema.utils.SchemaDocumentBuilder;
......
60 59
 *
61 60
 * $Id$
62 61
 * $Log$
63
 * Revision 1.1  2007-06-14 16:15:03  jorpiell
62
 * Revision 1.2  2007-06-22 12:21:18  jorpiell
63
 * The typeNotFoundException has been deleted. It never was thrown
64
 *
65
 * Revision 1.1  2007/06/14 16:15:03  jorpiell
64 66
 * builds to create the jars generated and add the schema code to the libGPEProject
65 67
 *
66 68
 * Revision 1.1  2007/06/14 13:50:07  jorpiell
......
103 105
		elementsFactory = DOMObjectsFactory.getInstance();
104 106
	}
105 107
	
106
	public void testCompare() throws SchemaWrittingException, ParserConfigurationException, SAXException, IOException, TypeNotFoundException, SchemaCreationException{
108
	public void testCompare() throws SchemaWrittingException, ParserConfigurationException, SAXException, IOException, SchemaCreationException{
107 109
		writeSchema();
108 110
		schema.write(new FileOutputStream(fileName));
109 111
		schema = SchemaDocumentBuilder.getInstance().parse(new FileInputStream(fileName));
......
121 123
		return "http://www.gvsig.org/cit";
122 124
	}
123 125
	
124
	public abstract void writeSchema() throws TypeNotFoundException;
126
	public abstract void writeSchema();
125 127
	
126
	public abstract void readSchema() throws TypeNotFoundException;
128
	public abstract void readSchema();
127 129

  
128 130

  
129 131
}

Also available in: Unified diff