KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > de > gulden > util > xml > serializer > XMLSchemaProvider


1 /*
2  * Project: Gulden Utilies
3  * Class: de.gulden.util.xml.serializer.XMLSchemaProvider
4  * Version: snapshot-beautyj-1.1
5  *
6  * Date: 2004-09-29
7  *
8  * This is a snapshot version of the Gulden Utilities,
9  * it is not released as a seperate version.
10  *
11  * Note: Contains auto-generated Javadoc comments created by BeautyJ.
12  *
13  * This is licensed under the GNU Lesser General Public License (LGPL)
14  * and comes with NO WARRANTY.
15  *
16  * Author: Jens Gulden
17  * Email: amoda@jensgulden.de
18  */

19
20 package de.gulden.util.xml.serializer;
21
22 import java.util.*;
23 import org.w3c.dom.Document JavaDoc;
24 import org.w3c.dom.Element JavaDoc;
25
26 /**
27  * Class XMLSchemaProvider.
28  *
29  * @author Jens Gulden
30  * @version snapshot-beautyj-1.1
31  */

32 public interface XMLSchemaProvider {
33
34     // ------------------------------------------------------------------------
35
// --- methods ---
36
// ------------------------------------------------------------------------
37

38     /**
39      * Returns the schema fragment.
40      */

41     public Element JavaDoc getSchemaFragment(Document JavaDoc document);
42
43     /**
44      * Returns the d t d fragment.
45      */

46     public String JavaDoc getDTDFragment();
47
48 } // end XMLSchemaProvider
49
Popular Tags