Package eu.admire.dispel.parser.v4.builder

Examples of eu.admire.dispel.parser.v4.builder.NewInstanceStrategy


    {
        switch (context)
        {
        case ARRAY: return new ArrayStrategy(this);
        }
        throw new UnsupportedContextException(Context.PE_INSTANCE, context);
    }
View Full Code Here


        case PE_INSTANCE:
            return new PEInstanceStrategy(this);
        case VARIABLE_ID:
            return new VariableIDStrategy(this);
        default:
            throw new UnsupportedContextException(
                Context.PE_ANNOTATION, context);
        }
    }
View Full Code Here

                this, mAdmireRegistry, mDispelOptimiser, mExecutionState);
        case FOR_UPDATE:
            return new ForAssignmentStrategy(
                this, mAdmireRegistry, mDispelOptimiser, mExecutionState);
        default:
            throw new UnsupportedContextException(Context.FOR, context);
        }
    }
View Full Code Here

            DispelExecutionState blockExecutionState =
                SimpleDispelExecutionState.makeBlockScope(mExecutionState);
            return new RootStrategy(
                this, mAdmireRegistry, mDispelOptimiser, blockExecutionState);
        default:
            throw new UnsupportedContextException(Context.IF, context);
        }
    }
View Full Code Here

    {
        switch (context)
        {
        case STYPE: return new STypeStrategy(this, mExecutionState);
        }
        throw new UnsupportedContextException(Context.CONNECTION, context);
    }
View Full Code Here

        case STYPE:
            return new STypeStrategy(this, mExecutionState);
        case DTYPE:
            return new DTypeStrategy(this, mExecutionState);
        }
        throw new UnsupportedContextException(Context.TUPLE_ELEMENT, context);
    }
View Full Code Here

    }

    public ContextStrategy getStrategy(Context context)
            throws UnsupportedContextException
    {
        throw new UnsupportedContextException(Context.TUPLE, context);
    }
View Full Code Here

        case SEQUENCE:
            return new SequenceStrategy(this, mAdmireRegistry, mDispelOptimiser, mExecutionState);
        case INNER_EXPRESSION:
            return new InnerExpressionStrategy(this,  mAdmireRegistry, mDispelOptimiser, mExecutionState);
        }
        throw new UnsupportedContextException(mMyContext, context);
    }
View Full Code Here

        case LIST:
            return new DTypeCollectionStrategy(this, mExecutionState);
        case TUPLE:
            return new DTypeTupleStrategy(this, mExecutionState);
        }
        throw new UnsupportedContextException(Context.LIST, context);
    }
View Full Code Here

        case INPUT_DECLARATION:
            return new IOStrategy(this, mExecutionState, Context.INPUT_DECLARATION);
        case OUTPUT_DECLARATION:
            return new IOStrategy(this, mExecutionState, Context.OUTPUT_DECLARATION);
        }
        throw new UnsupportedContextException(Context.TUPLE, context);
    }
View Full Code Here

TOP

Related Classes of eu.admire.dispel.parser.v4.builder.NewInstanceStrategy

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.