Package org.jenkinsci.plugins.workflow.graph

Examples of org.jenkinsci.plugins.workflow.graph.AtomNode


                // TODO assert that context has gotten a return value
            }
        } catch (Exception x) {
            context.onFailure(x);
        }
        return new AtomNode(exec, nodeId, /* TODO what if synchronous? */ prior) {
            @Override protected String getTypeDisplayName() {
                return step.getDescriptor().getDisplayName();
            }
        };
    }
View Full Code Here

TOP

Related Classes of org.jenkinsci.plugins.workflow.graph.AtomNode

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.