Package com.asakusafw.vocabulary.flow.graph

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


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

@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

         */
        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

@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

Related Classes of com.asakusafw.vocabulary.flow.graph.FlowResourceDescription

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.