Package gw.lang.reflect
Interface IMethodInfo
-
- All Superinterfaces:
IAnnotatedFeatureInfo
,IAttributedFeatureInfo
,IFeatureInfo
,IHasParameterInfos
- All Known Subinterfaces:
IAspectMethodInfoDelegate
,IGosuMethodInfo
,IJavaMethodInfo
,IMethodInfoDelegate
,ITypeInfoMethodInfo
- All Known Implementing Classes:
ArrayExpansionMethodInfo
,DynamicMethodInfo
,GosuMethodInfo
,JavaMethodInfo
,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 IMethodCallHandler
getCallHandler()
List<IExceptionInfo>
getExceptions()
String
getName()
Gets the programmatic name or identifier of this feature.IParameterInfo[]
getParameters()
String
getReturnDescription()
IType
getReturnType()
-
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:
getParameters
in interfaceIHasParameterInfos
-
getReturnType
IType getReturnType()
-
getCallHandler
IMethodCallHandler getCallHandler()
-
getReturnDescription
String getReturnDescription()
-
getExceptions
List<IExceptionInfo> getExceptions()
-
getName
String getName()
Description copied from interface:IFeatureInfo
Gets 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:
getName
in interfaceIFeatureInfo
-
-