Package org.apache.isis.core.metamodel.runtimecontext.noruntime

Examples of org.apache.isis.core.metamodel.runtimecontext.noruntime.RuntimeContextNoRuntime


    public TestProxyField(final String name, final ObjectSpecification spec) {
        this.name = name;
        this.spec = spec;
        identifier = Identifier.propertyOrCollectionIdentifier(spec.getFullIdentifier(), name);
        runtimeContext = new RuntimeContextNoRuntime();
    }
View Full Code Here


    private boolean hasNoIdentity;
    private RuntimeContextNoRuntime runtimeContext;

    public TestProxySpecification(final Class<?> type) {
        this(type.getName());
        runtimeContext = new RuntimeContextNoRuntime();
    }
View Full Code Here

            LOG.debug("initialising " + this);
        }

        // default subcomponents
        if (runtimeContext == null) {
            runtimeContext = new RuntimeContextNoRuntime();
        }
        injectInto(runtimeContext);
        injectInto(specificationTraverser);
        injectInto(metaModelValidator);
View Full Code Here

               
                ignoring(mockConfiguration);
            }
        });

        runtimeContext = new RuntimeContextNoRuntime();
        final ObjectReflectorDefault reflector = new ObjectReflectorDefault(mockConfiguration, new ClassSubstitutorAbstract() {}, new CollectionTypeRegistryDefault(), new SpecificationTraverserDefault(), new ProgrammingModelFacetsJava5(), new HashSet<FacetDecorator>(),
                new MetaModelValidatorDefault());
        reflector.setRuntimeContext(runtimeContext);
        reflector.init();
       
View Full Code Here

            LOG.debug("initialising " + this);
        }

        // default subcomponents
        if (runtimeContext == null) {
            runtimeContext = new RuntimeContextNoRuntime();
        }
        injectInto(runtimeContext);
        injectInto(specificationTraverser);
        injectInto(memberLayoutArranger);
        injectInto(metaModelValidator);
View Full Code Here

TOP

Related Classes of org.apache.isis.core.metamodel.runtimecontext.noruntime.RuntimeContextNoRuntime

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.