📄 selectionmanagerbeaninfo.java
字号:
package uk.ac.leeds.ccg.geotools;
import java.beans.*;
import java.beans.SimpleBeanInfo;
public class SelectionManagerBeanInfo extends java.beans.SimpleBeanInfo
{
public SelectionManagerBeanInfo()
{
}
/**
* Gets a BeanInfo for the superclass of this bean.
* @return BeanInfo[] containing this bean's superclass BeanInfo
*/
public BeanInfo[] getAdditionalBeanInfo()
{
try
{
BeanInfo[] bi = new BeanInfo[1];
bi[0] = Introspector.getBeanInfo(beanClass.getSuperclass());
return bi;
}
catch (IntrospectionException e)
{
throw new Error(e.toString());
}
}
/**
* Gets the BeanDescriptor for this bean.
* @return an object of type BeanDescriptor
*/
public BeanDescriptor getBeanDescriptor()
{
BeanDescriptor bd = new BeanDescriptor(beanClass);
return bd;
}
/**
* Gets an image that may be used to visually represent this bean
* (in the toolbar, on a form, etc).
* @param iconKind the type of icon desired, one of: BeanInfo.ICON_MONO_16x16,
* BeanInfo.ICON_COLOR_16x16, BeanInfo.ICON_MONO_32x32, or BeanInfo.ICON_COLOR_32x32.
* @return an image for this bean
* @see BeanInfo#ICON_MONO_16x16
* @see BeanInfo#ICON_COLOR_16x16
* @see BeanInfo#ICON_MONO_32x32
* @see BeanInfo#ICON_COLOR_32x32
*/
public java.awt.Image getIcon(int nIconKind)
{
java.awt.Image img = null;
return img;
}
/**
* Returns descriptions of this bean's properties.
*/
public PropertyDescriptor[] getPropertyDescriptors()
{
try{
IndexedPropertyDescriptor selection = new IndexedPropertyDescriptor("selection",beanClass, "getSelection","setSelection","getSelection","setSelection");
selection.setConstrained(true);
PropertyDescriptor[] rv = {
selection
};
return rv;
}
catch (IntrospectionException e)
{
throw new Error(e.toString());
}
}
private final static Class beanClass = SelectionManager.class;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -