Package org.apache.isis.progmodel.wrapper.metamodel.internal.util

Examples of org.apache.isis.progmodel.wrapper.metamodel.internal.util.MethodPrefixFinder


        }
        return member;
    }

    private String checkPrefix(final String methodName) {
        final String prefix = new MethodPrefixFinder().findPrefix(methodName);
        if (StringUtils.in(prefix, Constants.INVALID_PREFIXES)) {
            throw new UnsupportedOperationException(String.format(
                "Cannot invoke methods with prefix '%s'; use only get/set/addTo/removeFrom/action", prefix));
        }
        return prefix;
View Full Code Here

TOP

Related Classes of org.apache.isis.progmodel.wrapper.metamodel.internal.util.MethodPrefixFinder

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.