Package org.apache.isis.core.metamodel.specloader.traverser

Examples of org.apache.isis.core.metamodel.specloader.traverser.SpecificationTraverser


                                                           final ClassSubstitutorFactory classSubstitutorFactory,
                                                           final Collection<MetaModelRefiner> metaModelRefiners,
                                                           final Set<FacetDecorator> facetDecorators,
                                                           final MetaModelValidator mmv,
                                                           final IsisConfiguration configuration) {
        final SpecificationTraverser specificationTraverser = new SpecificationTraverserDefault();
        final CollectionTypeRegistry collectionTypeRegistry = new CollectionTypeRegistryDefault();
        final ClassSubstitutor classSubstitutor = classSubstitutorFactory.createClassSubstitutor(configuration);
       
        MetaModelValidatorComposite metaModelValidator = MetaModelValidatorComposite.asComposite(mmv);
        for (MetaModelRefiner metaModelRefiner : metaModelRefiners) {
View Full Code Here


     */
    @Override
    public ObjectReflectorDefault createReflector() {
        final ClassSubstitutor classSubstitutor = createClassSubstitutor(getConfiguration());
        final CollectionTypeRegistry collectionTypeRegistry = createCollectionTypeRegistry(getConfiguration());
        final SpecificationTraverser specificationTraverser = createSpecificationTraverser(getConfiguration());
        final MemberLayoutArranger memberLayoutArranger = createMemberLayoutArranger(getConfiguration());
        final ProgrammingModel programmingModel = createProgrammingModelFacets(getConfiguration());
        final Set<FacetDecorator> facetDecorators = createFacetDecorators(getConfiguration());
        final MetaModelValidator metaModelValidator = createMetaModelValidator(getConfiguration());

View Full Code Here

     * specified, then defaults to
     * {@value ReflectorConstants#SPECIFICATION_TRAVERSER_CLASS_NAME_DEFAULT}.
     */
    protected SpecificationTraverser createSpecificationTraverser(final IsisConfiguration configuration) {
        final String specificationTraverserClassName = configuration.getString(ReflectorConstants.SPECIFICATION_TRAVERSER_CLASS_NAME, ReflectorConstants.SPECIFICATION_TRAVERSER_CLASS_NAME_DEFAULT);
        final SpecificationTraverser specificationTraverser = InstanceUtil.createInstance(specificationTraverserClassName, SpecificationTraverser.class);
        return specificationTraverser;
    }
View Full Code Here

     */
    @Override
    public ObjectReflectorDefault createReflector() {
        final ClassSubstitutor classSubstitutor = createClassSubstitutor(getConfiguration());
        final CollectionTypeRegistry collectionTypeRegistry = createCollectionTypeRegistry(getConfiguration());
        final SpecificationTraverser specificationTraverser = createSpecificationTraverser(getConfiguration());
        final MemberLayoutArranger memberLayoutArranger = createMemberLayoutArranger(getConfiguration());
        final ProgrammingModel programmingModel = createProgrammingModelFacets(getConfiguration());
        final Set<FacetDecorator> facetDecorators = createFacetDecorators(getConfiguration());
        final MetaModelValidator metaModelValidator = createMetaModelValidator(getConfiguration());

View Full Code Here

     */
    protected SpecificationTraverser createSpecificationTraverser(final IsisConfiguration configuration) {
        final String specificationTraverserClassName =
            configuration.getString(ReflectorConstants.SPECIFICATION_TRAVERSER_CLASS_NAME,
                ReflectorConstants.SPECIFICATION_TRAVERSER_CLASS_NAME_DEFAULT);
        final SpecificationTraverser specificationTraverser =
            InstanceUtil.createInstance(specificationTraverserClassName, SpecificationTraverser.class);
        return specificationTraverser;
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.core.metamodel.specloader.traverser.SpecificationTraverser

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.