Package client.net.sf.saxon.ce.type

Examples of client.net.sf.saxon.ce.type.SchemaType


                    } else {
                        uri = env.getURIForPrefix(prefix);
                    }

                    int fingerprint = config.getNamePool().allocate(prefix, uri, parts[1]) & 0xfffff;
                    SchemaType type = config.getSchemaType(fingerprint);
                    b = type instanceof BuiltInAtomicType;
                } catch (QNameException e) {
                    XPathException err = new XPathException(e.getMessage());
                    err.setErrorCode("XTDE1425");
                    throw err;
View Full Code Here


                b = (lib.hasFunctionSignature(qName, (int)arity));
                break;
            case TYPE_AVAILABLE:
                final int fp = context.getNamePool().allocate(
                        qName.getPrefix(), qName.getNamespaceURI(), qName.getLocalName()) & 0xfffff;
                SchemaType type = context.getConfiguration().getSchemaType(fp);
                b = (type != null);

        }
        return BooleanValue.get(b);
View Full Code Here

TOP

Related Classes of client.net.sf.saxon.ce.type.SchemaType

Copyright © 2018 www.massapicom. 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.