< prev index next >

src/java.corba/share/classes/com/sun/corba/se/spi/monitoring/StringMonitoredAttributeBase.java

Print this page

        

*** 25,66 **** package com.sun.corba.se.spi.monitoring; import java.util.*; /** - * <p> - * * @author Hemanth Puttaswamy ! * </p> ! * <p> * A Convenient Abstraction to present String type Monitored Attribute. One * of the examples of StringMonitoredAttribute is the State information. - * </p> */ public abstract class StringMonitoredAttributeBase extends MonitoredAttributeBase { /////////////////////////////////////// // operations /** - * <p> * Constructs StringMonitoredAttribute with the MonitoredAttributeInfo * built with the class type of String. - * </p> - * <p> * * @param name of this attribute - * </p> - * <p> * @param description of this attribute - * </p> - * <p> - * @return a StringMonitoredAttributeBase - * </p> */ public StringMonitoredAttributeBase(String name, String description) { super( name ); MonitoredAttributeInfoFactory f = MonitoringFactories.getMonitoredAttributeInfoFactory(); --- 25,53 ---- package com.sun.corba.se.spi.monitoring; import java.util.*; /** * @author Hemanth Puttaswamy ! * * A Convenient Abstraction to present String type Monitored Attribute. One * of the examples of StringMonitoredAttribute is the State information. */ public abstract class StringMonitoredAttributeBase extends MonitoredAttributeBase { /////////////////////////////////////// // operations /** * Constructs StringMonitoredAttribute with the MonitoredAttributeInfo * built with the class type of String. * * @param name of this attribute * @param description of this attribute */ public StringMonitoredAttributeBase(String name, String description) { super( name ); MonitoredAttributeInfoFactory f = MonitoringFactories.getMonitoredAttributeInfoFactory();
< prev index next >