Search in sources :

Example 1 with SimpleBeanInfo

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());
}
Also used : SimpleBeanInfo(java.beans.SimpleBeanInfo)

Example 2 with SimpleBeanInfo

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());
}
Also used : SimpleBeanInfo(java.beans.SimpleBeanInfo)

Example 3 with SimpleBeanInfo

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());
}
Also used : SimpleBeanInfo(java.beans.SimpleBeanInfo)

Example 4 with SimpleBeanInfo

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());
}
Also used : SimpleBeanInfo(java.beans.SimpleBeanInfo)

Example 5 with SimpleBeanInfo

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());
}
Also used : SimpleBeanInfo(java.beans.SimpleBeanInfo)

Aggregations

SimpleBeanInfo (java.beans.SimpleBeanInfo)7