Package org.apache.isis.core.progmodel.facets.actions.invoke

Examples of org.apache.isis.core.progmodel.facets.actions.invoke.ExecutedFacetViaNamingConvention


        if (!capitalizedName.startsWith(LOCAL_PREFIX)) {
            return;
        }

        FacetUtil.addFacets(new Facet[] { new ExecutedFacetViaNamingConvention(ExecutedFacet.Where.LOCALLY, processMethodContext.getFacetHolder()), new NamedFacetInferred(capitalizedName.substring(5), processMethodContext.getFacetHolder()) });
    }
View Full Code Here


        if (!capitalizedName.startsWith(LOCAL_PREFIX)) {
            return;
        }

        FacetUtil.addFacets(new Facet[] {
            new ExecutedFacetViaNamingConvention(ExecutedFacet.Where.LOCALLY, processMethodContext.getFacetHolder()),
            new NamedFacetInferred(capitalizedName.substring(5), processMethodContext.getFacetHolder()) });
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.core.progmodel.facets.actions.invoke.ExecutedFacetViaNamingConvention

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.