Package gw.lang.parser
Interface IReducedDynamicFunctionSymbol
-
- All Superinterfaces:
IReducedSymbol
public interface IReducedDynamicFunctionSymbol extends IReducedSymbol
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<IReducedSymbol>getArgs()IType[]getArgTypes()IReducedDynamicFunctionSymbolgetBackingDfs()StringgetDisplayName()StringgetFullDescription()IGosuClassgetGosuClass()IAttributedFeatureInfogetMethodOrConstructorInfo()intgetModifiers()StringgetName()ITypegetReturnType()IScriptPartIdgetScriptPart()IReducedDynamicFunctionSymbolgetSuperDfs()ITypegetType()Objectinvoke(Object[] args)booleanisConstructor()booleanisStatic()booleanisSuperOrThisConstructor()-
Methods inherited from interface gw.lang.parser.IReducedSymbol
getAnnotations, getDefaultValueExpression, getIndex, getSymbolClass, hasTypeVariables, isAbstract, isFinal, isInternal, isPrivate, isProtected, isPublic, isReified, isValueBoxed
-
-
-
-
Method Detail
-
getType
IType getType()
- Specified by:
getTypein interfaceIReducedSymbol
-
getName
String getName()
- Specified by:
getNamein interfaceIReducedSymbol
-
getScriptPart
IScriptPartId getScriptPart()
- Specified by:
getScriptPartin interfaceIReducedSymbol
-
isStatic
boolean isStatic()
- Specified by:
isStaticin interfaceIReducedSymbol
-
getModifiers
int getModifiers()
- Specified by:
getModifiersin interfaceIReducedSymbol
-
getDisplayName
String getDisplayName()
- Specified by:
getDisplayNamein interfaceIReducedSymbol
-
getGosuClass
IGosuClass getGosuClass()
- Specified by:
getGosuClassin interfaceIReducedSymbol
-
getArgTypes
IType[] getArgTypes()
-
getReturnType
IType getReturnType()
-
getFullDescription
String getFullDescription()
- Specified by:
getFullDescriptionin interfaceIReducedSymbol
-
getArgs
List<IReducedSymbol> getArgs()
-
getSuperDfs
IReducedDynamicFunctionSymbol getSuperDfs()
-
isSuperOrThisConstructor
boolean isSuperOrThisConstructor()
-
getMethodOrConstructorInfo
IAttributedFeatureInfo getMethodOrConstructorInfo()
-
getBackingDfs
IReducedDynamicFunctionSymbol getBackingDfs()
-
isConstructor
boolean isConstructor()
-
-