Interface IClassInfo
- All Superinterfaces:
ILocalizableInfo
Represents the script object definition. This definition defines one
constructor, several members and methods. It also includes the name, display
name ID, and tool tip ID.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the constructor definition.Returns the member definition given method name.Returns the list of member definitions.Get the method definition given the method name.Returns the method definition list.boolean
isNative()
Returns whether a class object is native.Methods inherited from interface org.eclipse.birt.report.model.api.metadata.ILocalizableInfo
getDisplayName, getDisplayNameKey, getName, getToolTip, getToolTipKey
-
Method Details
-
getMethods
List<IMethodInfo> getMethods()Returns the method definition list. For methods that have the same name, only return one method.- Returns:
- a list of method definitions
-
getMethod
Get the method definition given the method name.- Parameters:
name
- the name of the method to get- Returns:
- the definition of the method to get
-
getMembers
List<IMemberInfo> getMembers()Returns the list of member definitions.- Returns:
- the list of member definitions
-
getMember
Returns the member definition given method name.- Parameters:
name
- name of the member to get- Returns:
- the member definition to get
-
getConstructor
IMethodInfo getConstructor()Returns the constructor definition.- Returns:
- the constructor definition
-
isNative
boolean isNative()Returns whether a class object is native.- Returns:
true
if an object of this class is native, otherwisefalse
-