com.microstrategy.web.transform.BeanDefn |
![]() |
The BeanDefn interface is used to manage the data of a bean object.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract String |
getDescription()
Returns the description of the bean associated with the bean definition object.
| ||||||||||
abstract Class |
getImplClass()
Returns the Class object representin the Java class of the bean associated with the bean definition object.
| ||||||||||
abstract String |
getImplClassName()
Returns the fully qualified Java class name of the bean associated with the bean definition object.
| ||||||||||
abstract String |
getName()
Returns the name of the bean definition object.
| ||||||||||
abstract void |
setDescription(String description)
Sets the description of the bean object.
| ||||||||||
abstract void |
setImplClassName(String className)
Sets the fully qualified java class of the bean associated with the bean definition object.
| ||||||||||
abstract void |
setName(String name)
Sets the name of the bean definition object.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Returns the description of the bean associated with the bean definition object.
Returns the Class object representin the Java class of the bean associated with the bean definition object.
ClassNotFoundException |
---|
Returns the fully qualified Java class name of the bean associated with the bean definition object.
Returns the name of the bean definition object.
Sets the description of the bean object.
description | the description of the bean. |
---|
Sets the fully qualified java class of the bean associated with the bean definition object.
className | the fully qualified class name to set. |
---|
Sets the name of the bean definition object. It must be unique within the catalog.
name | the name of the bean object. |
---|
IllegalArgumentException | thrown if the name is invalid or if it is already being used by another BeanDefn object. |
---|