Package org.jboss.weld.serialization

Examples of org.jboss.weld.serialization.MethodHolder


    private Method getMethod(String name, Class<?>... parameterTypes) throws NoSuchMethodException {
        return getClass().getDeclaredMethod(name, parameterTypes);
    }

    private void assertReferenceSerializable(Method method) throws Exception {
        MethodHolder reference = MethodHolder.of(method);
        Utils.deserialize(Utils.serialize(reference));
    }
View Full Code Here

TOP

Related Classes of org.jboss.weld.serialization.MethodHolder

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.