Package gw.lang.reflect
Interface IMethodInfo
-
- All Superinterfaces:
IAnnotatedFeatureInfo,IAttributedFeatureInfo,IFeatureInfo,IHasParameterInfos
- All Known Subinterfaces:
IAspectMethodInfoDelegate,IGosuMethodInfo,IJavaMethodInfo,IMethodInfoDelegate,ITypeInfoMethodInfo
- All Known Implementing Classes:
MetaMethodInfoDelegate,MethodInfoBase,MethodInfoDelegate,SimpleMethodInfo
public interface IMethodInfo extends IAttributedFeatureInfo, IHasParameterInfos
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface gw.lang.reflect.IAnnotatedFeatureInfo
IAnnotatedFeatureInfo.IAnnotationInfoHelper
-
Nested classes/interfaces inherited from interface gw.lang.reflect.IAttributedFeatureInfo
IAttributedFeatureInfo.MODIFIER
-
-
Field Summary
-
Fields inherited from interface gw.lang.reflect.IAnnotatedFeatureInfo
ANNOTATION_HELPER
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IMethodCallHandlergetCallHandler()List<IExceptionInfo>getExceptions()StringgetName()Gets the programmatic name or identifier of this feature.IParameterInfo[]getParameters()StringgetReturnDescription()ITypegetReturnType()-
Methods inherited from interface gw.lang.reflect.IAnnotatedFeatureInfo
getAnnotation, getAnnotations, getAnnotationsOfType, getDeclaredAnnotations, getDeprecatedReason, hasAnnotation, hasDeclaredAnnotation, isDefaultImpl, isDeprecated
-
Methods inherited from interface gw.lang.reflect.IAttributedFeatureInfo
isAbstract, isFinal, isHidden, isInternal, isPrivate, isProtected, isPublic, isReified, isScriptable, isStatic, isVisible
-
Methods inherited from interface gw.lang.reflect.IFeatureInfo
getContainer, getDescription, getDisplayName, getLocationInfo, getOwnersType
-
-
-
-
Method Detail
-
getParameters
IParameterInfo[] getParameters()
- Specified by:
getParametersin interfaceIHasParameterInfos
-
getReturnType
IType getReturnType()
-
getCallHandler
IMethodCallHandler getCallHandler()
-
getReturnDescription
String getReturnDescription()
-
getExceptions
List<IExceptionInfo> getExceptions()
-
getName
String getName()
Description copied from interface:IFeatureInfoGets the programmatic name or identifier of this feature. Note this name should follow Java identifier naming conventions (alpha-num and underscores, but can't start with a digit).- Specified by:
getNamein interfaceIFeatureInfo
-
-