当前位置: 首页>>代码示例>>Java>>正文


Java Reflection.invokeMethod方法代码示例

本文整理汇总了Java中com.github.czyzby.kiwi.util.gdx.reflection.Reflection.invokeMethod方法的典型用法代码示例。如果您正苦于以下问题:Java Reflection.invokeMethod方法的具体用法?Java Reflection.invokeMethod怎么用?Java Reflection.invokeMethod使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.github.czyzby.kiwi.util.gdx.reflection.Reflection的用法示例。


在下文中一共展示了Reflection.invokeMethod方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: invoke

import com.github.czyzby.kiwi.util.gdx.reflection.Reflection; //导入方法依赖的package包/类
/** Invokes the stored method with the chosen arguments.
 *
 * @return result of the invoked method. */
public Object invoke() {
    try {
        return Reflection.invokeMethod(method, methodOwner, parameters);
    } catch (final Exception exception) {
        throw new GdxRuntimeException("Unable to invoke method: " + method.getName() + " of type: " + methodOwner
                + " with parameters: " + GdxArrays.newArray(parameters), exception);
    }
}
 
开发者ID:gdx-libs,项目名称:gdx-autumn,代码行数:12,代码来源:MethodInvocation.java

示例2: provide

import com.github.czyzby.kiwi.util.gdx.reflection.Reflection; //导入方法依赖的package包/类
@Override
public Object provide() {
    try {
        return Reflection.invokeMethod(providerMethod, methodOwner,
                MethodInvocation.getParametersFromContext(providerMethod.getParameterTypes(), context));
    } catch (final ReflectionException exception) {
        throw new GdxRuntimeException("Unable to invoke method: " + providerMethod + " of provider: " + methodOwner,
                exception);
    }
}
 
开发者ID:gdx-libs,项目名称:gdx-autumn,代码行数:11,代码来源:ReflectionDependencyProvider.java

示例3: invokeAnnotatedViewMethod

import com.github.czyzby.kiwi.util.gdx.reflection.Reflection; //导入方法依赖的package包/类
protected <View> void invokeAnnotatedViewMethod(final View view, final Method method) throws ReflectionException {
    final Class<?>[] parameterTypes = method.getParameterTypes();
    if (parameterTypes == null || parameterTypes.length == 0) {
        Reflection.invokeMethod(method, view, (Object[]) Strings.EMPTY_ARRAY);
    } else if (parameterTypes.length == 1 && LmlParser.class.equals(parameterTypes[0])) {
        Reflection.invokeMethod(method, view, new Object[] { this });
    } else {
        throw new GdxRuntimeException(
                "Only no-arg or single-arg methods consuming LmlParser can be annotated. Found invalid args on annotated method: "
                        + method);
    }
}
 
开发者ID:czyzby,项目名称:gdx-lml,代码行数:13,代码来源:AbstractLmlParser.java

示例4: consume

import com.github.czyzby.kiwi.util.gdx.reflection.Reflection; //导入方法依赖的package包/类
@Override
public Object consume(final Object actor) {
    if (containsArgument()) {
        arguments[0] = actor;
    }
    try {
        return Reflection.invokeMethod(method, methodOwner, arguments);
    } catch (final Exception exception) {
        throw new GdxRuntimeException("Unable to invoke method: " + method + " of object: " + methodOwner
                + (containsArgument() ? " with argument: " + actor : ""), exception);
    }
}
 
开发者ID:czyzby,项目名称:gdx-lml,代码行数:13,代码来源:MethodActorConsumer.java


注:本文中的com.github.czyzby.kiwi.util.gdx.reflection.Reflection.invokeMethod方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。