Package com.asakusafw.vocabulary.flow.graph.OperatorDescription

Examples of com.asakusafw.vocabulary.flow.graph.OperatorDescription.Declaration.toMethod()


            switch (desc.getKind()) {
            case OPERATOR:
                Declaration decl = ((OperatorDescription) desc).getDeclaration();
                if (decl.getDeclaring().getName().startsWith("com.asakusafw.vocabulary.") == false) {
                    String elementId = context.label(
                            decl.toMethod(),
                            decl.getAnnotationType().getSimpleName(),
                            MessageFormat.format(
                                    "{0}#{1}",
                                    decl.getDeclaring().getSimpleName(),
                                    decl.toMethod().getName()));
View Full Code Here


                            decl.toMethod(),
                            decl.getAnnotationType().getSimpleName(),
                            MessageFormat.format(
                                    "{0}#{1}",
                                    decl.getDeclaring().getSimpleName(),
                                    decl.toMethod().getName()));
                    context.connect(flowId, elementId);
                }
                break;
            case FLOW_COMPONENT:
                FlowPartDescription part = (FlowPartDescription) desc;
View Full Code Here

        switch (desc.getKind()) {
        case OPERATOR:
            Declaration decl = ((OperatorDescription) desc).getDeclaration();
            if (decl.getDeclaring().getName().startsWith("com.asakusafw.vocabulary.") == false) {
                String id = context.label(
                        decl.toMethod(),
                        decl.getAnnotationType().getSimpleName(),
                        MessageFormat.format(
                                "{0}#{1}",
                                decl.getDeclaring().getSimpleName(),
                                decl.toMethod().getName()));
View Full Code Here

                        decl.toMethod(),
                        decl.getAnnotationType().getSimpleName(),
                        MessageFormat.format(
                                "{0}#{1}",
                                decl.getDeclaring().getSimpleName(),
                                decl.toMethod().getName()));
                return id;
            }
            return null;
        case FLOW_COMPONENT:
        case INPUT:
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.