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

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


        switch (context)
        {
        case TUPLE_ELEMENT:
            return new TypeTupleElementStrategy(this, mExecutionState);
        }
        throw new UnsupportedContextException(Context.TUPLE, context);
    }
View Full Code Here


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

        case ARRAY:
            return new ArrayStrategy(this);
        case WITH_ASSERTION:
            return new WithAssertionStrategy(this, mExecutionState);
        default:
            throw new UnsupportedContextException(Context.CONNECTION, context);
        }
    }
View Full Code Here

        case VARIABLE_ID:
            return new VariableIDStrategy(this);
        case GENERIC_PE:
            return new PETypeStrategy(this, mExecutionState);
        }
        throw new UnsupportedContextException(Context.PARAMETER, context);
    }
View Full Code Here

        case REPEAT:
            return new RepeatStrategy(this, mExecutionState, false);
        case REPEAT_ENOUGH:
            return new RepeatStrategy(this, mExecutionState, true);
        default:
            throw new UnsupportedContextException(Context.SEQUENCE, context);
        }
    }
View Full Code Here

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

        switch (context)
        {
        case PE_INSTANCE:
            return new PEInstanceStrategy(this);
        }
        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.TYPE_DEF, context);
    }
View Full Code Here

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

        switch (context)
        {
        case LIST:
            return new ListStrategy(this, mExecutionState);
        }
        throw new UnsupportedContextException(Context.REPEAT_ENOUGH, context);
    }
View Full Code Here

TOP

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

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.