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

org.kohsuke.rngom.parse.Context Maven / Gradle / Ivy

package org.kohsuke.rngom.parse;

import java.util.Enumeration;
import org.relaxng.datatype.ValidationContext;

/**
 * Provides contextual information.
 * 
 * This is typically useful for parsing QNames.
 */
public interface Context extends ValidationContext {
    /**
     * Enumerates the prefixes bound to namespaces.
     */
    Enumeration prefixes();
    
    /**
     * Returns the immutable snapshot of this {@link Context}.
     */
    Context copy();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy