FileDocCategorySizeDatePackage
CompositeDataStatistic.javaAPI DocGlassfish v2 API3053Fri May 04 22:30:52 BST 2007com.sun.appserv.management.j2ee.statistics

CompositeDataStatistic

public class CompositeDataStatistic extends MapStatisticImpl
Implementation of Statistic which expects a CompositeData to contain them by name.

Fields Summary
static final long
serialVersionUID
Constructors Summary
public CompositeDataStatistic(CompositeData compositeData)
Create a new CompositeDataStatistic using the specified {@link CompositeData}. Create from a {@link CompositeData}

    
			        		    	 
		
	    
	
		this( OpenMBeanUtil.compositeDataToMap( compositeData ) );
	
public CompositeDataStatistic(Map map)
Create a new instance using the specified {@link Map} whose keys are the Statistic names.

		super( map );
	
public CompositeDataStatistic(javax.management.j2ee.statistics.Statistic statistic)
Create a new instance using the specified Statistic as the source for the members.

		super( statistic );
	
Methods Summary