请教有关beanshell问题!(急)
beanshell这个方法看不懂      希望牛人帮忙解释下: 
 	setClass   
 void   setClass(DOSChangeable   classDefinition)    
 		throws   IIPRequestException   
 Change   of   information   of   Class.   
 Parameters: 
             classDefinition   –   Information   of   Class   (HashMap   key   –   value) 
 DOSChangeable   Organization   of   data   (HashMap   key   –   vXalue) 
             ouid   –   OUID   of   Class 
             name   –   Name   of   Class 
             description   –   Description   of   Class 
             ouid@package   –   OUID   of   package   including   Class 
             array$ouid.superclass   –   List   of   super   class   OUID   that   has   been   inherited   by   class 
             is.root   –   Whether   it   is   Root   Class   or   not   (1level   Class   in   UI) 
             is.leaf   –   Whether   it   is   Leaf   Class   or   not   (can   not   inherited) 
             is.versionable   –   Whether   it   is   versionable   or   not   (true   if   it   inherited   FVersionObjectof   Foundation   Package,   otherwise   false) 
             is.filecontrol   –   Whether   it   can   attach   a   file   or   not   (true   if   it   inherited   FFilecontrolof   Foundation   Package   otherwise   false) 
             capacity   –    
             code   –   DB   table   name   of   Class. 
             title   –   Title   of   UI 
             tooltip   –   Tooltip   of   UI 
             icon   –   Icon   of   UI 
             datasource.id   –   Location   of   DB   table   of   Class 
             is.xa.object   –    
             is.association.class   –   is   Association   Class   or   not   ?    
             is.abstract   –   is   Abstract   Class   or   not   ?   (inherited   class   must   exist) 
             use.unique.number   –   Unique   number   will   be   used   or   not   in   Class   or   subclass   of      Class 
------解决方案--------------------关注
------解决方案--------------------DOSChangeable 是一个Hashtable,下面是它的内容: 
 key为ouid的值,表示类的OUID 
 key为name的值,表示类的名称 
 key为description的值,表示类的描述 
 key为ouid@package的值,表示包含此类的包的OUID 
 …………………………