Skip to content

建议增强osgl#getMethod()的实现 #200

@moonmanbu

Description

@moonmanbu

当前实现为

    public static Method getMethod(Class c, String methodName, Class... argTypes) {
        try {
            return c.getMethod(methodName, argTypes);
        } catch (NoSuchMethodException e) {
            return null;
        }
    }

直接调用的Class#getMethod()方法, 不能获取object的所有Method, 建议按照fosgl#fieldsOf()的实现方法重新实现

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions