< prev index next >

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

Print this page

        

*** 25,87 **** package com.sun.corba.se.spi.monitoring; import java.util.*; /** - * <p> - * * @author Hemanth Puttaswamy ! * </p> ! * <p> * Monitored AttributeInfo contains the meta information of the Monitored * Attribute. - * </p> */ public interface MonitoredAttributeInfo { /////////////////////////////////////// // operations /** - * <p> * If the Attribute is writable from ASAdmin then isWritable() will return * true. - * </p> - * <p> * * @return a boolean with true or false - * </p> */ public boolean isWritable(); /** - * <p> * isStatistic() is true if the attribute is presented as a Statistic. - * </p> - * <p> * * @return a boolean with true or false - * </p> */ public boolean isStatistic(); /** ! * <p> ! * Class Type: We will allow only basic class types: 1)Boolean 2)Integer ! * 3)Byte 4)Long 5)Float 6)Double 7)String 8)Character ! * </p> ! * <p> * * @return a Class Type - * </p> */ public Class type(); /** - * <p> * Get's the description for the Monitored Attribute. - * </p> - * <p> * * @return a String with description - * </p> */ public String getDescription(); } // end MonitoredAttributeInfo --- 25,76 ---- package com.sun.corba.se.spi.monitoring; import java.util.*; /** * @author Hemanth Puttaswamy ! * * Monitored AttributeInfo contains the meta information of the Monitored * Attribute. */ public interface MonitoredAttributeInfo { /////////////////////////////////////// // operations /** * If the Attribute is writable from ASAdmin then isWritable() will return * true. * * @return a boolean with true or false */ public boolean isWritable(); /** * isStatistic() is true if the attribute is presented as a Statistic. * * @return a boolean with true or false */ public boolean isStatistic(); /** ! * Class Type: We will allow only basic class types: ! * <ol> ! * <li>Boolean</li> ! * <li>Integer</li> ! * <li>Byte</li> ! * <li>Long</li> ! * <li>Float</li> ! * <li>Double</li> ! * <li>String</li> ! * <li>Character</li> ! * </ol> * * @return a Class Type */ public Class type(); /** * Get's the description for the Monitored Attribute. * * @return a String with description */ public String getDescription(); } // end MonitoredAttributeInfo
< prev index next >