Package gw.lang.reflect
Interface IFeatureInfo
-
- All Known Subinterfaces:
IAnnotatedFeatureInfo
,IAspectMethodInfoDelegate
,IAttributedFeatureInfo
,IConstructorInfo
,IEventInfo
,IExceptionInfo
,IExpansionPropertyInfo
,IFeatureInfoDelegate
,IFileBasedFeature
,IGosuClassTypeInfo
,IGosuConstructorInfo
,IGosuMethodInfo
,IGosuMethodParamInfo
,IGosuPropertyInfo
,IGosuVarPropertyInfo
,IHasParameterInfos
,IJavaBasePropertyInfo
,IJavaConstructorInfo
,IJavaFieldPropertyInfo
,IJavaMethodInfo
,IJavaPropertyInfo
,IJavaTypeInfo
,IMethodInfo
,IMethodInfoDelegate
,IParameterInfo
,IPropertiesPropertyInfo
,IPropertyInfo
,IPropertyInfoDelegate
,IRelativeTypeInfo
,ITypeInfo
,ITypeInfoMethodInfo
,ITypeInfoPropertyInfo
- All Known Implementing Classes:
AbstractGenericMethodInfo
,AnnotationReflectUtil.SyntheticExceptionInfo
,ArrayExpansionMethodInfo
,ArrayExpansionPropertyInfo
,BaseFeatureInfo
,BaseHandBuiltTypeInfo
,BaseJavaTypeInfo
,BaseTypeInfo
,CompoundTypeInfo
,DefaultArrayTypeInfo
,DynamicConstructorInfo
,DynamicMethodInfo
,DynamicPropertyInfo
,DynamicTypeInfo
,ErrorTypeInfo
,FeatureManagerTypeInfoBase
,FunctionTypeInfo
,GosuBaseAttributedFeatureInfo
,GosuClassTypeInfo
,GosuConstructorInfo
,GosuExceptionInfo
,GosuFragmentTypeInfo
,GosuMethodInfo
,GosuMethodParamInfo
,GosuPropertyInfo
,GosuVarPropertyInfo
,ITypeLoaderTypeInfo
,JavaBaseFeatureInfo
,JavaConstructorInfo
,JavaExceptionInfo
,JavaFieldPropertyInfo
,JavaMethodInfo
,JavaMethodParamInfo
,JavaPropertyInfo
,JavaTypeInfo
,LengthProperty
,LocalVarFeatureInfo
,MetaMethodInfoDelegate
,MetaPropertyInfoDelegate
,MetaTypeTypeInfo
,MetaTypeTypeInfo.TypeProperty
,MethodInfoBase
,MethodInfoDelegate
,ModifiedParameterInfo
,NamespaceTypeInfo
,PackagePropertyInfo
,PackageTypeInfo
,ParameterInfoBuilder.BuiltParameterInfo
,ParameterizedGosuConstructorInfo
,ParameterizedGosuPropertyInfo
,PropertiesTypeInfo
,PropertyInfoBase
,PropertyInfoBuilder.BuiltPropertyInfo
,PropertyInfoDelegate
,SimpleMethodInfo
,SimpleParameterInfo
,StaticPropertyInfo
,TypeInfoBase
,TypeInPackageTypeInfo
,TypePropertyInfo
public interface IFeatureInfo
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description IFeatureInfo
getContainer()
Get this feature's containing feature.String
getDescription()
A full description of this feature.String
getDisplayName()
Gets the display name of this feature.default ILocationInfo
getLocationInfo()
String
getName()
Gets the programmatic name or identifier of this feature.IType
getOwnersType()
Get this feature's owner's type.
-
-
-
Method Detail
-
getContainer
IFeatureInfo getContainer()
Get this feature's containing feature. May be null.
-
getOwnersType
IType getOwnersType()
Get this feature's owner's type. If this feature has no owner, this is the type of the feature itself. Typically, the only kind of feature w/o an owner is an ITypeInfo, so properties, methods, params, etc. s/b considered owned. Hence, ultimately an ITypeInfo's type will be the owner's type for any given feature.
-
getName
String getName()
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).
-
getDisplayName
String getDisplayName()
Gets the display name of this feature. There is no guarantee this display name is localized.
-
getDescription
String getDescription()
A full description of this feature.
-
getLocationInfo
default ILocationInfo getLocationInfo()
-
-