use of java.beans.SimpleBeanInfo in project j2objc by google.
the class SimpleBeanInfoTest method testGetEventSetDescriptors.
public void testGetEventSetDescriptors() {
SimpleBeanInfo info = new SimpleBeanInfo();
assertNull(info.getEventSetDescriptors());
}
use of java.beans.SimpleBeanInfo in project j2objc by google.
the class SimpleBeanInfoTest method testGetMethodDescriptors.
// public void testGetIcon() {
// SimpleBeanInfo info = new SimpleBeanInfo();
//
// assertNull(info.getIcon(BeanInfo.ICON_COLOR_16x16));
// }
public void testGetMethodDescriptors() {
SimpleBeanInfo info = new SimpleBeanInfo();
assertNull(info.getMethodDescriptors());
}
use of java.beans.SimpleBeanInfo in project j2objc by google.
the class SimpleBeanInfoTest method testGetDefaultPropertyIndex.
public void testGetDefaultPropertyIndex() {
SimpleBeanInfo info = new SimpleBeanInfo();
assertEquals(-1, info.getDefaultPropertyIndex());
}
use of java.beans.SimpleBeanInfo in project j2objc by google.
the class SimpleBeanInfoTest method testGetBeanDescriptor.
public void testGetBeanDescriptor() {
SimpleBeanInfo info = new SimpleBeanInfo();
assertNull(info.getBeanDescriptor());
}
use of java.beans.SimpleBeanInfo in project j2objc by google.
the class SimpleBeanInfoTest method testGetDefaultEventIndex.
public void testGetDefaultEventIndex() {
SimpleBeanInfo info = new SimpleBeanInfo();
assertEquals(-1, info.getDefaultEventIndex());
}
Aggregations