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

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

There is a newer version: 2.2.5.1
Show newest version
/*
 * @(#)$Id: NameClassWithoutChildState.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.reader.State;
import com.sun.msv.util.StartTagInfo;

/**
 * Base implementation for those states who cannot have any child name class.
 * (e.g., nsName, anyName)
 * 
 * Note that this class does not prohibit children from different namespace.
 * Those "foreign" elements are just ignored.
 * 
 * @author Kohsuke KAWAGUCHI
 */
public abstract class NameClassWithoutChildState extends NameClassState {
    protected final State createChildState(StartTagInfo tag) {
        // return null to indicate that this element does not accept a child.
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy