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

com.sun.msv.relaxns.reader.IncludeGrammarState Maven / Gradle / Ivy

There is a newer version: 2.2.5.1
Show newest version
/*
 * @(#)$Id: IncludeGrammarState.java,v 1.6 2003/06/09 20:37:37 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.relaxns.reader;

import com.sun.msv.reader.AbortException;
import com.sun.msv.reader.ChildlessState;

/**
 * parses <include> element of RELAX Namespace.
 * 
 * @author Kohsuke KAWAGUCHI
 */
public class IncludeGrammarState extends ChildlessState
{
    protected void startSelf()
    {
        super.startSelf();
    
        final String href = startTag.getAttribute("grammarLocation");

        if(href==null) {
            // name attribute is required.
            reader.reportError( RELAXNSReader.ERR_MISSING_ATTRIBUTE,
                "include","grammarLocation");
            // recover by ignoring this include element
        } else
            try {
                reader.switchSource(this,href,new RootGrammarMergeState());
            } catch( AbortException e ) {
                // recover by ignoring this include element
            }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy