📄 loginwindowbeaninfo.java
字号:
package jim;
/* Copyright, 2001 Jason Dominiczak.
*
* This file is part of JIM - The Java Instant Messenger.
* eMailer is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
* JIM is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with eMailer; see the file COPYING. If not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
* MA 02111-1307, USA.
*/
public class LoginWindowBeanInfo extends java.beans.SimpleBeanInfo {
/**
* Gets the componentOrientation property descriptor.
* @return java.beans.PropertyDescriptor
*/
public java.beans.PropertyDescriptor componentOrientationPropertyDescriptor() {
java.beans.PropertyDescriptor aDescriptor = null;
try {
try {
/* Using methods via getMethod is the faster way to create the componentOrientation property descriptor. */
java.lang.reflect.Method aGetMethod = null;
try {
/* Attempt to find the method using getMethod with parameter types. */
java.lang.Class aGetMethodParameterTypes[] = {};
aGetMethod = getBeanClass().getMethod("getComponentOrientation", aGetMethodParameterTypes);
} catch (java.lang.Throwable exception) {
/* Since getMethod failed, call findMethod. */
handleException(exception);
aGetMethod = findMethod(getBeanClass(), "getComponentOrientation", 0);
};
java.lang.reflect.Method aSetMethod = null;
try {
/* Attempt to find the method using getMethod with parameter types. */
java.lang.Class aSetMethodParameterTypes[] = {
java.awt.ComponentOrientation.class
};
aSetMethod = getBeanClass().getMethod("setComponentOrientation", aSetMethodParameterTypes);
} catch (java.lang.Throwable exception) {
/* Since getMethod failed, call findMethod. */
handleException(exception);
aSetMethod = findMethod(getBeanClass(), "setComponentOrientation", 1);
};
aDescriptor = new java.beans.PropertyDescriptor("componentOrientation"
, aGetMethod, aSetMethod);
} catch (java.lang.Throwable exception) {
/* Since we failed using methods, try creating a default property descriptor. */
handleException(exception);
aDescriptor = new java.beans.PropertyDescriptor("componentOrientation"
, getBeanClass());
};
/* aDescriptor.setBound(false); */
/* aDescriptor.setConstrained(false); */
/* aDescriptor.setDisplayName("componentOrientation"); */
/* aDescriptor.setShortDescription("componentOrientation"); */
/* aDescriptor.setExpert(false); */
/* aDescriptor.setHidden(false); */
/* aDescriptor.setValue("preferred", new java.lang.Boolean(false)); */
/* aDescriptor.setValue("ivjDesignTimeProperty", new java.lang.Boolean(true)); */
aDescriptor.setValue("enumerationValues", new java.lang.Object[] {
"UNKNOWN",java.awt.ComponentOrientation.UNKNOWN,"java.awt.ComponentOrientation.UNKNOWN",
"LEFT_TO_RIGHT",java.awt.ComponentOrientation.LEFT_TO_RIGHT,"java.awt.ComponentOrientation.LEFT_TO_RIGHT",
"RIGHT_TO_LEFT",java.awt.ComponentOrientation.RIGHT_TO_LEFT,"java.awt.ComponentOrientation.RIGHT_TO_LEFT",
});
} catch (java.lang.Throwable exception) {
handleException(exception);
};
return aDescriptor;
}
/**
* Find the method by comparing (name & parameter size) against the methods in the class.
* @return java.lang.reflect.Method
* @param aClass java.lang.Class
* @param methodName java.lang.String
* @param parameterCount int
*/
public static java.lang.reflect.Method findMethod(java.lang.Class aClass, java.lang.String methodName, int parameterCount) {
try {
/* Since this method attempts to find a method by getting all methods from the class,
this method should only be called if getMethod cannot find the method. */
java.lang.reflect.Method methods[] = aClass.getMethods();
for (int index = 0; index < methods.length; index++){
java.lang.reflect.Method method = methods[index];
if ((method.getParameterTypes().length == parameterCount) && (method.getName().equals(methodName))) {
return method;
}
}
} catch (java.lang.Throwable exception) {
return null;
}
return null;
}
/**
* Returns the BeanInfo of the superclass of this bean to inherit its features.
* @return java.beans.BeanInfo[]
*/
public java.beans.BeanInfo[] getAdditionalBeanInfo() {
java.lang.Class superClass;
java.beans.BeanInfo superBeanInfo = null;
try {
superClass = getBeanDescriptor().getBeanClass().getSuperclass();
} catch (java.lang.Throwable exception) {
return null;
}
try {
superBeanInfo = java.beans.Introspector.getBeanInfo(superClass);
} catch (java.beans.IntrospectionException ie) {}
if (superBeanInfo != null) {
java.beans.BeanInfo[] ret = new java.beans.BeanInfo[1];
ret[0] = superBeanInfo;
return ret;
}
return null;
}
/**
* Gets the bean class.
* @return java.lang.Class
*/
public static java.lang.Class getBeanClass() {
return jim.LoginWindow.class;
}
/**
* Gets the bean class name.
* @return java.lang.String
*/
public static java.lang.String getBeanClassName() {
return "jim.LoginWindow";
}
public java.beans.BeanDescriptor getBeanDescriptor() {
java.beans.BeanDescriptor aDescriptor = null;
try {
/* Create and return the LoginWindowBeanInfo bean descriptor. */
aDescriptor = new java.beans.BeanDescriptor(jim.LoginWindow.class);
/* aDescriptor.setExpert(false); */
/* aDescriptor.setHidden(false); */
/* aDescriptor.setValue("hidden-state", Boolean.FALSE); */
} catch (Throwable exception) {
};
return aDescriptor;
}
/**
* Return the event set descriptors for this bean.
* @return java.beans.EventSetDescriptor[]
*/
public java.beans.EventSetDescriptor[] getEventSetDescriptors() {
try {
java.beans.EventSetDescriptor aDescriptorList[] = {};
return aDescriptorList;
} catch (java.lang.Throwable exception) {
handleException(exception);
};
return null;
}
/**
* Gets the getJim() method descriptor.
* @return java.beans.MethodDescriptor
*/
public java.beans.MethodDescriptor getJimMethodDescriptor() {
java.beans.MethodDescriptor aDescriptor = null;
try {
/* Create and return the getJim() method descriptor. */
java.lang.reflect.Method aMethod = null;
try {
/* Attempt to find the method using getMethod with parameter types. */
java.lang.Class aParameterTypes[] = {};
aMethod = getBeanClass().getMethod("getJim", aParameterTypes);
} catch (java.lang.Throwable exception) {
/* Since getMethod failed, call findMethod. */
handleException(exception);
aMethod = findMethod(getBeanClass(), "getJim", 0);
};
try {
/* Try creating the method descriptor with parameter descriptors. */
java.beans.ParameterDescriptor aParameterDescriptors[] = {};
aDescriptor = new java.beans.MethodDescriptor(aMethod, aParameterDescriptors);
} catch (java.lang.Throwable exception) {
/* Try creating the method descriptor without parameter descriptors. */
handleException(exception);
aDescriptor = new java.beans.MethodDescriptor(aMethod);
};
/* aDescriptor.setDisplayName("getJim()"); */
/* aDescriptor.setShortDescription("getJim()"); */
/* aDescriptor.setExpert(false); */
/* aDescriptor.setHidden(false); */
/* aDescriptor.setValue("preferred", new java.lang.Boolean(false)); */
} catch (java.lang.Throwable exception) {
handleException(exception);
};
return aDescriptor;
}
/**
* Return the method descriptors for this bean.
* @return java.beans.MethodDescriptor[]
*/
public java.beans.MethodDescriptor[] getMethodDescriptors() {
try {
java.beans.MethodDescriptor aDescriptorList[] = {
getJimMethodDescriptor()
,loginWindow_InitializeMethodDescriptor()
,main_javalangString__MethodDescriptor()
};
return aDescriptorList;
} catch (java.lang.Throwable exception) {
handleException(exception);
};
return null;
}
/**
* Return the property descriptors for this bean.
* @return java.beans.PropertyDescriptor[]
*/
public java.beans.PropertyDescriptor[] getPropertyDescriptors() {
try {
java.beans.PropertyDescriptor aDescriptorList[] = {
componentOrientationPropertyDescriptor()
,jimPropertyDescriptor()
};
return aDescriptorList;
} catch (java.lang.Throwable exception) {
handleException(exception);
};
return null;
}
/**
* Called whenever the bean information class throws an exception.
* @param exception java.lang.Throwable
*/
private void handleException(java.lang.Throwable exception) {
/* Uncomment the following lines to print uncaught exceptions to stdout */
// System.out.println("--------- UNCAUGHT EXCEPTION ---------");
// exception.printStackTrace(System.out);
}
/**
* Gets the jim property descriptor.
* @return java.beans.PropertyDescriptor
*/
public java.beans.PropertyDescriptor jimPropertyDescriptor() {
java.beans.PropertyDescriptor aDescriptor = null;
try {
try {
/* Using methods via getMethod is the faster way to create the jim property descriptor. */
java.lang.reflect.Method aGetMethod = null;
try {
/* Attempt to find the method using getMethod with parameter types. */
java.lang.Class aGetMethodParameterTypes[] = {};
aGetMethod = getBeanClass().getMethod("getJim", aGetMethodParameterTypes);
} catch (java.lang.Throwable exception) {
/* Since getMethod failed, call findMethod. */
handleException(exception);
aGetMethod = findMethod(getBeanClass(), "getJim", 0);
};
java.lang.reflect.Method aSetMethod = null;
aDescriptor = new java.beans.PropertyDescriptor("jim"
, aGetMethod, aSetMethod);
} catch (java.lang.Throwable exception) {
/* Since we failed using methods, try creating a default property descriptor. */
handleException(exception);
aDescriptor = new java.beans.PropertyDescriptor("jim"
, getBeanClass());
};
/* aDescriptor.setBound(false); */
/* aDescriptor.setConstrained(false); */
/* aDescriptor.setDisplayName("jim"); */
/* aDescriptor.setShortDescription("jim"); */
/* aDescriptor.setExpert(false); */
/* aDescriptor.setHidden(false); */
/* aDescriptor.setValue("preferred", new java.lang.Boolean(false)); */
/* aDescriptor.setValue("ivjDesignTimeProperty", new java.lang.Boolean(true)); */
} catch (java.lang.Throwable exception) {
handleException(exception);
};
return aDescriptor;
}
/**
* Gets the loginWindow_Initialize() method descriptor.
* @return java.beans.MethodDescriptor
*/
public java.beans.MethodDescriptor loginWindow_InitializeMethodDescriptor() {
java.beans.MethodDescriptor aDescriptor = null;
try {
/* Create and return the loginWindow_Initialize() method descriptor. */
java.lang.reflect.Method aMethod = null;
try {
/* Attempt to find the method using getMethod with parameter types. */
java.lang.Class aParameterTypes[] = {};
aMethod = getBeanClass().getMethod("loginWindow_Initialize", aParameterTypes);
} catch (java.lang.Throwable exception) {
/* Since getMethod failed, call findMethod. */
handleException(exception);
aMethod = findMethod(getBeanClass(), "loginWindow_Initialize", 0);
};
try {
/* Try creating the method descriptor with parameter descriptors. */
java.beans.ParameterDescriptor aParameterDescriptors[] = {};
aDescriptor = new java.beans.MethodDescriptor(aMethod, aParameterDescriptors);
} catch (java.lang.Throwable exception) {
/* Try creating the method descriptor without parameter descriptors. */
handleException(exception);
aDescriptor = new java.beans.MethodDescriptor(aMethod);
};
/* aDescriptor.setDisplayName("loginWindow_Initialize()"); */
/* aDescriptor.setShortDescription("loginWindow_Initialize()"); */
/* aDescriptor.setExpert(false); */
/* aDescriptor.setHidden(false); */
/* aDescriptor.setValue("preferred", new java.lang.Boolean(false)); */
} catch (java.lang.Throwable exception) {
handleException(exception);
};
return aDescriptor;
}
/**
* Gets the main(java.lang.String[]) method descriptor.
* @return java.beans.MethodDescriptor
*/
public java.beans.MethodDescriptor main_javalangString__MethodDescriptor() {
java.beans.MethodDescriptor aDescriptor = null;
try {
/* Create and return the main(java.lang.String[]) method descriptor. */
java.lang.reflect.Method aMethod = null;
try {
/* Attempt to find the method using getMethod with parameter types. */
java.lang.Class aParameterTypes[] = {
java.lang.String[].class
};
aMethod = getBeanClass().getMethod("main", aParameterTypes);
} catch (java.lang.Throwable exception) {
/* Since getMethod failed, call findMethod. */
handleException(exception);
aMethod = findMethod(getBeanClass(), "main", 1);
};
try {
/* Try creating the method descriptor with parameter descriptors. */
java.beans.ParameterDescriptor aParameterDescriptor1 = new java.beans.ParameterDescriptor();
aParameterDescriptor1.setName("arg1");
aParameterDescriptor1.setDisplayName("args");
java.beans.ParameterDescriptor aParameterDescriptors[] = {
aParameterDescriptor1
};
aDescriptor = new java.beans.MethodDescriptor(aMethod, aParameterDescriptors);
} catch (java.lang.Throwable exception) {
/* Try creating the method descriptor without parameter descriptors. */
handleException(exception);
aDescriptor = new java.beans.MethodDescriptor(aMethod);
};
/* aDescriptor.setDisplayName("main(java.lang.String[])"); */
/* aDescriptor.setShortDescription("main(java.lang.String[])"); */
/* aDescriptor.setExpert(false); */
/* aDescriptor.setHidden(false); */
/* aDescriptor.setValue("preferred", new java.lang.Boolean(false)); */
} catch (java.lang.Throwable exception) {
handleException(exception);
};
return aDescriptor;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -