( self, withClassLoaderArgs=False )
| 54 | ## Return the class being held. If withClassLoaderArgs is True then a tuple is returned |
| 55 | # in the following form : ( class, className, classVersion, searchPathEnvVar ). |
| 56 | def getClass( self, withClassLoaderArgs=False ) : |
| 57 | |
| 58 | if withClassLoaderArgs : |
| 59 | return ( self.__classInstance, self.__className, self.__classVersion, self.__searchPathEnvVar ) |
| 60 | else : |
| 61 | return self.__classInstance |
| 62 | |
| 63 | ## Sets the class being held. The specified class is loaded using a ClassLoader and |
| 64 | # the class' parameters are added to this parameter as children. |
no outgoing calls