Examples of specification()


Examples of org.apache.axis2.corba.idl.parser.IDLParser.specification()

    public IDL process() throws IDLProcessorException {
        IDL idl;
        try {
            IDLParser parser = new IDLParser(new IDLLexer(stream));
            parser.specification();
            AST idlTree = parser.getAST();

            // new DumpASTVisitor().visit(idlTree); // print the AST structure

            IDLVisitor visitor = new IDLVisitor();
View Full Code Here

Examples of org.opengis.annotation.UML.specification()

     * @return The WKT type for the given class or interface, or {@code null} if none.
     */
    public static String toWKTType(final Class<?> base, final Class<?> type) {
        if (type != base) {
            final UML uml = type.getAnnotation(UML.class);
            if (uml != null && uml.specification() == Specification.ISO_19111) {
                String name = uml.identifier();
                final int length = name.length() - 5; // Length without "CS_" and "CS".
                if (length >= 1 && name.startsWith("CS_") && name.endsWith("CS")) {
                    final StringBuilder buffer = new StringBuilder(length).append(name, 3, 3 + length);
                    if (!name.regionMatches(3, "Cartesian", 0, 9)) {
View Full Code Here
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.