📄 appbeaninfo.java
字号:
package HAB.object;
import java.beans.*;
public class APPBeanInfo extends SimpleBeanInfo
implements java.io.Serializable
{
public PropertyDescriptor[] getPropertyDescriptors()
{
try
{
PropertyDescriptor rv[] = new PropertyDescriptor[24];
rv[0] = new PropertyDescriptor("Comments", beanClass);
rv[1] = new PropertyDescriptor("CompanyName", beanClass);
rv[2] = new PropertyDescriptor("EXEName", beanClass);
rv[3] = new PropertyDescriptor("FileDescription", beanClass);
rv[4] = new PropertyDescriptor("HelpFile", beanClass);
rv[5] = new PropertyDescriptor("HInstance", beanClass);
rv[6] = new PropertyDescriptor("LegalCopyright", beanClass);
rv[7] = new PropertyDescriptor("LegalTrademarks", beanClass);
rv[8] = new PropertyDescriptor("Major", beanClass);
rv[9] = new PropertyDescriptor("Minor", beanClass);
rv[10] = new PropertyDescriptor("OLERequestPendingMsgText", beanClass);
rv[11] = new PropertyDescriptor("OLERequestPendingMsgTitle", beanClass);
rv[12] = new PropertyDescriptor("OLERequestPendingTimeout", beanClass);
rv[13] = new PropertyDescriptor("OLEServerBusyMsgText", beanClass);
rv[14] = new PropertyDescriptor("OLEServerBusyMsgTitle", beanClass);
rv[15] = new PropertyDescriptor("OLEServerBusyRaiseError", beanClass);
rv[16] = new PropertyDescriptor("OLEServerBusyTimeout", beanClass);
rv[17] = new PropertyDescriptor("Path", beanClass);
rv[18] = new PropertyDescriptor("PrevInstance", beanClass);
rv[19] = new PropertyDescriptor("ProductName", beanClass);
rv[20] = new PropertyDescriptor("Revision", beanClass);
rv[21] = new PropertyDescriptor("StartMode", beanClass);
rv[22] = new PropertyDescriptor("TaskVisible", beanClass);
rv[23] = new PropertyDescriptor("Title", beanClass);
return rv;
}catch(IntrospectionException e)
{
throw new Error(e.toString());
}
}
public MethodDescriptor[] getMethodDescriptors()
{
MethodDescriptor rv[] = new MethodDescriptor[0];
return rv;
}
private void writeObject(java.io.ObjectOutputStream s)
throws java.io.IOException
{
s.defaultWriteObject();
}
private void readObject(java.io.ObjectInputStream s)
throws java.lang.ClassNotFoundException,
java.io.IOException
{
s.defaultReadObject();
}
static Class beanClass = APP.class;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -