gw.lang.reflect.features.IMethodReference Maven / Gradle / Ivy
/*
* Copyright 2014 Guidewire Software, Inc.
*/
package gw.lang.reflect.features;
import gw.lang.reflect.IMethodInfo;
public interface IMethodReference extends IInvokableFeatureReference
{
/**
* Returns the method info for this reference
*/
IMethodInfo getMethodInfo();
@SuppressWarnings("unused") // called via compiler
IMethodReference copyWithVoidReturn();
}