KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > xml > schema > model > readwrite > TestSchemaReadWrite


1 /*
2  * TestSchemaReadWrite.java
3  *
4  * Created on November 14, 2005, 5:19 PM
5  *
6  * To change this template, choose Tools | Template Manager
7  * and open the template in the editor.
8  */

9
10 package org.netbeans.modules.xml.schema.model.readwrite;
11
12 import org.netbeans.modules.xml.schema.model.visitor.SchemaVisitor;
13
14 /**
15  *
16  * @author nn136682
17  */

18 public interface TestSchemaReadWrite {
19     String JavaDoc getSchemaResourcePath();
20     /**
21      * Test reading in the schema specified by #getSchemaResourcePath.
22      * Verifying the resulted model using a visitor or
23      * FindSchemaComponentFromDOM#findComponent method.
24      */

25     void testRead() throws Exception JavaDoc;
26     
27     //void testFidelity() throws Exception;
28

29     /**
30      * Reconstruct the schema pointed by #getSchemaResourcePath from empty schema.
31      */

32     void testWrite() throws Exception JavaDoc;
33 }
34
Popular Tags