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

com.sun.msv.grammar.relaxng.RELAXNGGrammar Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
/*
 * Copyright (c) 2001-2013 Oracle and/or its affiliates. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 *   - Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *
 *   - Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in the
 *     documentation and/or other materials provided with the distribution.
 *
 *   - Neither the name of Oracle nor the names of its
 *     contributors may be used to endorse or promote products derived
 *     from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

package com.sun.msv.grammar.relaxng;

import com.sun.msv.grammar.ExpressionPool;
import com.sun.msv.grammar.trex.TREXGrammar;

/**
 * Grammar for RELAX NG (with DTD compatibility annotation).
 * 
 * @author Kohsuke KAWAGUCHI
 */
public class RELAXNGGrammar extends TREXGrammar {

    public RELAXNGGrammar( ExpressionPool pool, TREXGrammar parentGrammar ) {
        super(pool,parentGrammar);
    }
    public RELAXNGGrammar( ExpressionPool pool )    { super(pool); }
    public RELAXNGGrammar() { super(); }

    /**
     * the compatibility property of the ID/IDREF feature.
     * 
     * This flag is set to true if this schema is compatible in terms of
     * ID/IDREF, as defined in the spec.
     */
    public boolean isIDcompatible = true;
    
    /**
     * the compatibility property of the default attribute feature.
     * 
     * This flag is set to true if this schema is compatible in terms of
     * the default attribute value feature, as defined in the spec.
     * 
     * 

* Note that the currently we don't support infoset augmentation. */ public boolean isDefaultAttributeValueCompatible = true; /** * the compatibility property of the annotation feature. * * This flag is set to true if this schema is compatible in terms of * the annotation feature, as defined in the spec. */ public boolean isAnnotationCompatible = true; /* /** * add an entry to the default value table. * * @return * false if the default attribute value for this element and attribute * was already specified. true if this is the first time. */ /* public final boolean addDefaultValue( String elementNamespaceURI, String elementLocalName, String attributeNamespaceURI, String attributeLocalName, String value ) { if(defaultValues==null) defaultValues = new HashMap(); return defaultValues.put( new ElemAttrNamePair(elementNamespaceURI,elementLocalName,attributeNamespaceURI,attributeLocalName), value )==null; } /** * checks if this grammar has any attribute default value. */ /* public final boolean hasDefaultValue() { return defaultValues!=null && defaultValues.size()!=0; } /** * gets the list of defaultable attributes of the given element. * * @param (namespaceURI,localName) * this pair designates the name of the element. * * @return * if there is no defaultable attribute, it returns empty array. * this method never returns null. */ /* public final String[] getDefaultableAttributes( String namespaceURI, String localName ) { } // TODO: this can be implemented much efficiently, I guess. // map from NamePair (element name) to // (a map from NamePair (attribute name) to attribute value) private Map defaultValues; */ /* public static final int KEYTYPE_NONE =0; public static final int KEYTYPE_ID =1; public static final int KEYTYPE_IDREF =2; public final int getAttributeKeyType( String elementNamespaceURI, String elementLocalName, String attributeNamespaceURI, String attributeLocalName, String value ) { } */ // serialization support private static final long serialVersionUID = 1; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy