All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.msv.writer.GrammarWriter Maven / Gradle / Ivy

There is a newer version: 2.2.5.1
Show newest version
/*
 * @(#)$Id: GrammarWriter.java,v 1.4 2003/06/09 20:37:48 kk122374 Exp $
 *
 * Copyright 2001 Sun Microsystems, Inc. All Rights Reserved.
 * 
 * This software is the proprietary information of Sun Microsystems, Inc.  
 * Use is subject to license terms.
 * 
 */
package com.sun.msv.writer;

import org.xml.sax.DocumentHandler;
import org.xml.sax.SAXException;

import com.sun.msv.grammar.Grammar;

/**
 * Converter from AGM to the XML representation.
 * 
 * @author Kohsuke KAWAGUCHI
 */
public interface GrammarWriter {
    
    /**
     * Sets DocumentHandler. This handler will receive the result of conversion.
     */
    void setDocumentHandler( DocumentHandler handler );
    
    /**
     * Converts this grammar to the XML representation.
     * 
     * @exception UnsupportedOperationException
     *        if this grammar cannot be serialized.
     *        this exception can be thrown on the half way of the conversion.
     * 
     * @exception SAXException
     *        DocumentHandler may throw a SAXException.
     */
    void write( Grammar grammar ) throws UnsupportedOperationException, SAXException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy