FileDocCategorySizeDatePackage
StringMonitoredAttributeBase.javaAPI DocJava SE 5 API1411Fri Aug 26 14:54:38 BST 2005com.sun.corba.se.spi.monitoring

StringMonitoredAttributeBase

public abstract class StringMonitoredAttributeBase extends MonitoredAttributeBase

author
Hemanth Puttaswamy

A Convenient Abstraction to present String type Monitored Attribute. One of the examples of StringMonitoredAttribute is the State information.

Fields Summary
Constructors Summary
public StringMonitoredAttributeBase(String name, String description)

Constructs StringMonitoredAttribute with the MonitoredAttributeInfo built with the class type of String.

param
name of this attribute

param
description of this attribute

return
a StringMonitoredAttributeBase

      
        super( name );
        MonitoredAttributeInfoFactory f =
            MonitoringFactories.getMonitoredAttributeInfoFactory();
        MonitoredAttributeInfo maInfo = f.createMonitoredAttributeInfo(
            description, String.class, false, false );
       this.setMonitoredAttributeInfo( maInfo );
    
Methods Summary