Examples of FlowResourceDescription


Examples of com.asakusafw.vocabulary.flow.graph.FlowResourceDescription

@TargetOperator(SideDataJoin.class)
public class SideDataJoinFlowProcessor extends LineEndProcessor {

    @Override
    public void emitLineEnd(Context context) {
        FlowResourceDescription resource = context.getResourceDescription(SideDataJoin.ID_RESOURCE_MASTER);
        SideDataKindFlowAnalyzer helper = new SideDataKindFlowAnalyzer(
                context,
                (JoinResourceDescription) resource);
        ModelFactory f = context.getModelFactory();
View Full Code Here

Examples of com.asakusafw.vocabulary.flow.graph.FlowResourceDescription

public class SideDataBranchFlowProcessor extends LineEndProcessor {

    @Override
    public void emitLineEnd(Context context) {
        ModelFactory f = context.getModelFactory();
        FlowResourceDescription resource = context.getResourceDescription(SideDataBranch.ID_RESOURCE_MASTER);
        SideDataKindFlowAnalyzer helper = new SideDataKindFlowAnalyzer(
                context,
                (JoinResourceDescription) resource);

        OperatorDescription desc = context.getOperatorDescription();
View Full Code Here

Examples of com.asakusafw.vocabulary.flow.graph.FlowResourceDescription

@TargetOperator(SideDataJoinUpdate.class)
public class SideDataJoinUpdateFlowProcessor extends LineEndProcessor {

    @Override
    public void emitLineEnd(Context context) {
        FlowResourceDescription resource = context.getResourceDescription(SideDataJoinUpdate.ID_RESOURCE_MASTER);
        SideDataKindFlowAnalyzer helper = new SideDataKindFlowAnalyzer(
                context,
                (JoinResourceDescription) resource);
        ModelFactory f = context.getModelFactory();
        OperatorDescription desc = context.getOperatorDescription();
View Full Code Here

Examples of com.asakusafw.vocabulary.flow.graph.FlowResourceDescription

         */
        public FlowResourceDescription getResourceDescription(int resourceNumber) {
            if (resourceNumber < 0 || resourceNumber >= description.getResources().size()) {
                throw new IllegalArgumentException("invalid resource number"); //$NON-NLS-1$
            }
            FlowResourceDescription resource = description.getResources().get(resourceNumber);
            return resource;
        }
View Full Code Here

Examples of com.asakusafw.vocabulary.flow.graph.FlowResourceDescription

@TargetOperator(SideDataCheck.class)
public class SideDataCheckFlowProcessor extends LineEndProcessor {

    @Override
    public void emitLineEnd(Context context) {
        FlowResourceDescription resource = context.getResourceDescription(SideDataCheck.ID_RESOURCE_MASTER);
        SideDataKindFlowAnalyzer helper = new SideDataKindFlowAnalyzer(
                context,
                (JoinResourceDescription) resource);

        ModelFactory f = context.getModelFactory();
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.