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

com.sun.msv.reader.trex.NameClassNotState Maven / Gradle / Ivy

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

import com.sun.msv.grammar.NameClass;
import com.sun.msv.grammar.NotNameClass;

/**
 * parses <not> name class.
 * 
 * @author Kohsuke KAWAGUCHI
 */
public class NameClassNotState extends NameClassWithChildState {
    protected NameClass castNameClass( NameClass halfCastedNameClass, NameClass child ) {
        // this parameter is null only for the first time invocation.
        if( halfCastedNameClass!=null ) {
            //  only allows one child.
            reader.reportError( TREXBaseReader.ERR_MORE_THAN_ONE_NAMECLASS );
            // recovery can be done by simply doing nothing at all.
            return halfCastedNameClass;
        } else
            return new NotNameClass(child);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy