Package gw.internal.gosu.parser
Class ITypeLoaderTypeInfo
- java.lang.Object
-
- gw.lang.reflect.BaseFeatureInfo
-
- gw.lang.reflect.BaseJavaTypeInfo
-
- gw.internal.gosu.parser.ITypeLoaderTypeInfo
-
- All Implemented Interfaces:
IAnnotatedFeatureInfo
,IAttributedFeatureInfo
,IFeatureInfo
,ITypeInfo
public class ITypeLoaderTypeInfo extends BaseJavaTypeInfo
-
-
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
-
Nested classes/interfaces inherited from interface gw.lang.reflect.ITypeInfo
ITypeInfo.FIND
-
-
Field Summary
-
Fields inherited from interface gw.lang.reflect.IAnnotatedFeatureInfo
ANNOTATION_HELPER
-
Fields inherited from interface gw.lang.reflect.ITypeInfo
TYPEINFO_EXT
-
-
Constructor Summary
Constructors Constructor Description ITypeLoaderTypeInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List
getConstructors()
IEventInfo
getEvent(CharSequence strEvent)
Get an event mapped to the specified name.List
getEvents()
MethodList
getMethods()
List<? extends IPropertyInfo>
getProperties()
IPropertyInfo
getProperty(CharSequence propName)
Get a property mapped to the specified name.-
Methods inherited from class gw.lang.reflect.BaseJavaTypeInfo
getCallableConstructor, getCallableMethod, getConstructor, getDeclaredAnnotations, getDescription, getDisplayName, getMethod, getName, getShortDescription, isStatic
-
Methods inherited from class gw.lang.reflect.BaseFeatureInfo
getAnnotation, getAnnotations, getAnnotationsOfType, getContainer, getDeprecatedReason, getOwnersType, getParamTypes, getSuperAnnotatedElements, hasAnnotation, hasDeclaredAnnotation, isAbstract, isDefaultImpl, isDeprecated, isFinal, isHidden, isInternal, isInternalAPI, isPrivate, isProtected, isPublic, isReified, isScriptable, isVisible, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface gw.lang.reflect.IAnnotatedFeatureInfo
getAnnotation, getAnnotations, getAnnotationsOfType, getDeprecatedReason, hasAnnotation, hasDeclaredAnnotation, isDefaultImpl, isDeprecated
-
Methods inherited from interface gw.lang.reflect.IFeatureInfo
getContainer, getLocationInfo, getOwnersType
-
-
-
-
Method Detail
-
getProperties
public List<? extends IPropertyInfo> getProperties()
- Returns:
- An unmodifiable random access list of
IPropertyInfo
instances. The list is sorted ascending by name. Returns an empty list if there are no properties.
-
getProperty
public IPropertyInfo getProperty(CharSequence propName)
Description copied from interface:ITypeInfo
Get a property mapped to the specified name.- Parameters:
propName
- The property name.- Returns:
- An IPropertyInfo corresponding to the property name.
-
getMethods
public MethodList getMethods()
- Returns:
- An unmodifiable random access list of
IMethodInfo
instances. The list is sorted ascending by name. Returns an empty list if there are no methods.
-
getConstructors
public List getConstructors()
- Returns:
- An unmodifiable random access list of
IConstructorInfo
instances. The list is sorted ascending by name. Returns an empty list if there are no constructors.
-
getEvents
public List getEvents()
- Returns:
- An unmodifiable random access list of
IEventInfo
instances. The list is sorted ascending by name. Returns an empty list if ther are no events.
-
getEvent
public IEventInfo getEvent(CharSequence strEvent)
Description copied from interface:ITypeInfo
Get an event mapped to the specified name.- Parameters:
strEvent
- The event name.- Returns:
- An IEventInfo corresponding to the event name.
-
-