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

com.sun.msv.reader.ExpressionWithoutChildState Maven / Gradle / Ivy

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

import com.sun.msv.util.StartTagInfo;

/**
 * Base implementation for those states who cannot have any children.
 * (e.g., RELAX: empty, null, etc.   TREX: anyString, notAllowed, etc.)
 * 
 * Note that this class does not prohibit children from different namespace.
 * Those "foreign" elements are just ignored.
 * 
 * @author Kohsuke KAWAGUCHI
 */
public abstract class ExpressionWithoutChildState extends ExpressionState
{
    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