Package org.apache.isis.core.metamodel.facets

Examples of org.apache.isis.core.metamodel.facets.InteractionHelper


        this.returnType = returnType;
        this.actionInteractionFacet = actionInteractionFacet;
        this.runtimeContext = runtimeContext;
        this.adapterManager = adapterManager;
        this.servicesInjector = servicesInjector;
        this.interactionHelper = new InteractionHelper(servicesInjector);
    }
View Full Code Here


            final FacetHolder holder) {
        super(type(), eventType, holder);
        this.getterFacet = getterFacet;
        this.collectionRemoveFromFacet = collectionRemoveFromFacet;
        this.collectionInteractionFacet = collectionInteractionFacet;
        this.interactionHelper = new InteractionHelper(servicesInjector);
    }
View Full Code Here

            final FacetHolder holder,
            final ServicesInjector servicesInjector,
            final SpecificationLoader specificationLoader) {
        super(PropertyInteractionFacet.class, holder, eventType, specificationLoader);
        this.getterFacet = getterFacet;
        interactionHelper = new InteractionHelper(servicesInjector);
    }
View Full Code Here

            final FacetHolder holder) {
        super(type(), eventType, holder);
        this.getterFacet = getterFacet;
        this.collectionAddToFacet = collectionAddToFacet;
        this.collectionInteractionFacet = collectionInteractionFacet;
        this.interactionHelper = new InteractionHelper(servicesInjector);
    }
View Full Code Here

            final FacetHolder holder) {
        super(type(), eventType, holder);
        this.getterFacet = getterFacet;
        this.setterFacet = setterFacet;
        this.propertyInteractionFacet = propertyInteractionFacet;
        this.interactionHelper = new InteractionHelper(servicesInjector);
    }
View Full Code Here

            final FacetHolder holder) {
        super(type(), eventType, holder);
        this.getterFacet = getterFacet;
        this.clearFacet = clearFacet;
        this.propertyInteractionFacet = propertyInteractionFacet;
        this.interactionHelper = new InteractionHelper(servicesInjector);
    }
View Full Code Here

            final Class<? extends CollectionInteractionEvent<?, ?>> eventType,
            final FacetHolder holder,
            final ServicesInjector servicesInjector,
            final SpecificationLoader specificationLoader) {
        super(CollectionInteractionFacet.class, holder, eventType, specificationLoader);
        interactionHelper = new InteractionHelper(servicesInjector);
    }
View Full Code Here

            final Class<? extends ActionInteractionEvent<?>> eventType,
            final FacetHolder holder,
            final ServicesInjector servicesInjector,
            final SpecificationLoader specificationLoader) {
        super(CollectionInteractionFacet.class, holder, eventType, specificationLoader);
        interactionHelper = new InteractionHelper(servicesInjector);
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.core.metamodel.facets.InteractionHelper

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.