1 17 package org.apache.jmeter.testbeans; 18 19 import java.awt.Image ; 20 import java.beans.BeanDescriptor ; 21 import java.beans.BeanInfo ; 22 import java.beans.EventSetDescriptor ; 23 import java.beans.MethodDescriptor ; 24 import java.beans.PropertyDescriptor ; 25 26 27 44 public class TestBeanBeanInfo implements BeanInfo { 45 46 47 public BeanInfo [] getAdditionalBeanInfo() { 48 return new BeanInfo [0]; 49 } 50 51 54 public BeanDescriptor getBeanDescriptor() { 55 return null; 56 } 57 58 61 public int getDefaultEventIndex() { 62 return 0; 63 } 64 65 68 public int getDefaultPropertyIndex() { 69 return 0; 70 } 71 72 75 public EventSetDescriptor [] getEventSetDescriptors() { 76 return new EventSetDescriptor [0]; 77 } 78 79 82 public Image getIcon(int iconKind) { 83 return null; 84 } 85 86 89 public MethodDescriptor [] getMethodDescriptors() { 90 return new MethodDescriptor [0]; 91 } 92 93 96 public PropertyDescriptor [] getPropertyDescriptors() { 97 return new PropertyDescriptor [0]; 98 } 99 } | Popular Tags |