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

msv.relames.src.com.sun.msv.schematron.grammar.SAction Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package com.sun.msv.schematron.grammar;

import org.apache.xpath.XPath;

/**
 * assert or report
 */
public class SAction {
    
	public final XPath		xpath;
	public final String		document;
    
    public SAction( XPath xp, String msg ) {
        this.xpath = xp;
        this.document = msg;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy