Lines Matching defs:info

485      * {@link MBeanInfo#getClassName() info.getClassName()}.
486 * @param info The default MBeanInfo derived by reflection.
489 protected String getClassName(MBeanInfo info) {
490 if (info == null) return getImplementationClass().getName();
491 return info.getClassName();
501 * {@link MBeanInfo#getDescription() info.getDescription()}.
502 * @param info The default MBeanInfo derived by reflection.
505 protected String getDescription(MBeanInfo info) {
506 if (info == null) return null;
507 return info.getDescription();
518 * info.getDescription()}.</p>
525 * @param info The default MBeanFeatureInfo derived by reflection.
528 protected String getDescription(MBeanFeatureInfo info) {
529 if (info == null) return null;
530 return info.getDescription();
541 * getDescription((MBeanFeatureInfo) info)}.
542 * @param info The default MBeanAttributeInfo derived by reflection.
545 protected String getDescription(MBeanAttributeInfo info) {
546 return getDescription((MBeanFeatureInfo)info);
558 * getDescription((MBeanFeatureInfo) info)}.
559 * @param info The default MBeanConstructorInfo derived by reflection.
562 protected String getDescription(MBeanConstructorInfo info) {
563 return getDescription((MBeanFeatureInfo)info);
620 * getDescription((MBeanFeatureInfo) info)}.
621 * @param info The default MBeanOperationInfo derived by reflection.
624 protected String getDescription(MBeanOperationInfo info) {
625 return getDescription((MBeanFeatureInfo)info);
635 * {@link MBeanOperationInfo#getImpact() info.getImpact()}.
636 * @param info The default MBeanOperationInfo derived by reflection.
639 protected int getImpact(MBeanOperationInfo info) {
640 if (info == null) return MBeanOperationInfo.UNKNOWN;
641 return info.getImpact();
725 * @param info The default MBeanInfo derived by reflection.
728 MBeanNotificationInfo[] getNotifications(MBeanInfo info) {
749 * @param info The default MBeanInfo derived by reflection.
752 Descriptor getDescriptor(MBeanInfo info, boolean immutableInfo) {
754 if (info == null ||
755 info.getDescriptor() == null ||
756 info.getDescriptor().getFieldNames().length == 0) {
764 Descriptor d = info.getDescriptor();
803 * <code>info</code> in this instance. A subclass can define
804 * other policies, such as not saving <code>info</code> (so it is
810 * @param info the new <code>MBeanInfo</code> to cache. Any
814 protected void cacheMBeanInfo(MBeanInfo info) {
815 cachedMBeanInfo = info;
953 getConstructors(MBeanInfo info, Object impl) {
955 getConstructors(info.getConstructors(), impl);
985 private MBeanOperationInfo[] getOperations(MBeanInfo info) {
986 final MBeanOperationInfo[] ops = info.getOperations();
1015 private MBeanAttributeInfo[] getAttributes(MBeanInfo info) {
1016 final MBeanAttributeInfo[] atts = info.getAttributes();