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

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


        super.setUp();

        facetFactory = new ValueFacetAnnotationOrConfigurationFactory();
        isisConfigurationDefault = new IsisConfigurationDefault();
        facetFactory.setConfiguration(isisConfigurationDefault);
        facetFactory.setRuntimeContext(new RuntimeContextNoRuntime(DeploymentCategory.PRODUCTION));
    }
View Full Code Here


                return adapters.get(pattern);
            }
        };

        reflector = new ObjectReflectorDefault(configuration, new TestClassSubstitutor(), new CollectionTypeRegistryDefault(), new SpecificationTraverserDefault(), new MemberLayoutArrangerDefault(), new ProgrammingModelFacetsJava5(), new HashSet<FacetDecorator>(), new MetaModelValidatorDefault());
        reflector.setRuntimeContext(new RuntimeContextNoRuntime() {

            @Override
            public AdapterMap getAdapterMap() {
                return adapterMap;
            }
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

    private final String id;
    private final RuntimeContext runtimeContext;

    public TestProxyAction(final String id) {
        this.id = id;
        runtimeContext = new RuntimeContextNoRuntime();
    }
View Full Code Here

    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

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

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

    private final RuntimeContext runtimeContext;

    public TestProxyAssociation(final String name, final TestProxySpecification valueFieldSpec) {
        this.name = name;
        this.spec = valueFieldSpec;
        runtimeContext = new RuntimeContextNoRuntime();
    }
View Full Code Here

        reflector =
            new ObjectReflectorDefault(configuration, new TestClassSubstitutor(), new CollectionTypeRegistryDefault(),
                new SpecificationTraverserDefault(), new MemberLayoutArrangerDefault(),
                new ProgrammingModelFacetsJava5(), new HashSet<FacetDecorator>(), new MetaModelValidatorDefault());
        reflector.setRuntimeContext(new RuntimeContextNoRuntime() {

            @Override
            public AdapterMap getAdapterMap() {
                return adapterMap;
            }
View Full Code Here

    private final String id;
    private final RuntimeContext runtimeContext;

    public TestProxyAction(final String id) {
        this.id = id;
        runtimeContext = new RuntimeContextNoRuntime();
    }
View Full Code Here

    private final RuntimeContext runtimeContext;

    public TestProxyAssociation(final String name, final TestProxySpecification valueFieldSpec) {
        this.name = name;
        this.spec = valueFieldSpec;
        runtimeContext = new RuntimeContextNoRuntime();
    }
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.