FileDocCategorySizeDatePackage
XTypesMapper.javaAPI DocGlassfish v2 API7876Tue Jun 05 09:31:54 BST 2007com.sun.appserv.management.base

XTypesMapper

public final class XTypesMapper extends TypesMapper
Map all types from XTypes to their respective MBean interfaces.

(Omit source code)

Fields Summary
private static XTypesMapper
INSTANCE
private static final Class[]
MBEAN_INTERFACES
The classes for which we need mapping (all MBeans must be included)
Constructors Summary
private XTypesMapper()

		super( MBEAN_INTERFACES );
	
Methods Summary
public static synchronized com.sun.appserv.management.base.XTypesMappergetInstance()
Get the (singleton) instance.

	
		       	 
		   
	
	
		if ( INSTANCE == null )
		{
			INSTANCE	= new XTypesMapper();
		}
		
		return( INSTANCE );