Package gw.lang.reflect
Interface IConstructorInfo
-
- All Superinterfaces:
IAnnotatedFeatureInfo
,IAttributedFeatureInfo
,IFeatureInfo
,IHasParameterInfos
- All Known Subinterfaces:
IGosuConstructorInfo
,IJavaConstructorInfo
- All Known Implementing Classes:
DynamicConstructorInfo
,GosuConstructorInfo
,JavaConstructorInfo
,ParameterizedGosuConstructorInfo
public interface IConstructorInfo 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 Default Methods Modifier and Type Method Description IConstructorHandler
getConstructor()
List<IExceptionInfo>
getExceptions()
IParameterInfo[]
getParameters()
IType
getType()
default boolean
hasRawConstructor(IConstructorInfo rawCtor)
boolean
isDefault()
-
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, getName, getOwnersType
-
-
-
-
Method Detail
-
getType
IType getType()
-
getParameters
IParameterInfo[] getParameters()
- Specified by:
getParameters
in interfaceIHasParameterInfos
-
getConstructor
IConstructorHandler getConstructor()
-
getExceptions
List<IExceptionInfo> getExceptions()
-
isDefault
boolean isDefault()
-
hasRawConstructor
default boolean hasRawConstructor(IConstructorInfo rawCtor)
-
-