Package codeStatistics.xpathfunctions

Source Code of codeStatistics.xpathfunctions.ObjValue

package codeStatistics.xpathfunctions;

import net.sf.saxon.s9api.XdmValue;
import net.sf.saxon.value.ObjectValue;

public class ObjValue extends XdmValue {
    public ObjValue(Object o) {
        super(new ObjectValue(o));
    }
}
TOP

Related Classes of codeStatistics.xpathfunctions.ObjValue

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.