package eo.ejb.example;

import java.lang.reflect.Method;

public class PatternTwoB {
    public void dispatch(Class<?> cls) throws Exception {
        Method m = cls.getDeclaredMethod("getPrc_info_area_list_list");
        m.setAccessible(true);
        m.invoke(null);
    }
}