Examples of PropertyInteraction


Examples of org.apache.isis.applib.annotation.PropertyInteraction

        }

        //
        // Set up PropertyInteractionFacet, which will act as the hiding/disabling/validating advisor
        //
        final PropertyInteraction propertyInteraction = Annotations.getAnnotation(method, PropertyInteraction.class);
        final Class<? extends PropertyInteractionEvent<?, ?>> propertyInteractionEventType;

        final PropertyInteractionFacetAbstract propertyInteractionFacet;
        if(propertyInteraction != null) {
            propertyInteractionEventType = propertyInteraction.value();
            propertyInteractionFacet = new PropertyInteractionFacetAnnotation(
                    propertyInteractionEventType, getterFacet, holder, servicesInjector, getSpecificationLoader());
        } else {
            propertyInteractionEventType = PropertyInteractionEvent.Default.class;
            propertyInteractionFacet = new PropertyInteractionFacetDefault(
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.