@Override
public MethodDescriptor[] getMethodDescriptors() {
try {
final Vector<MethodDescriptor> vector = new Vector<MethodDescriptor>();
vector.add(new MethodDescriptor(PropertyDeviceArea.class.getMethod("setDeviceName",
new Class[] { String.class })));
vector.add(new MethodDescriptor(PropertyDeviceArea.class.getMethod("setPropertyName",
new Class[] { String.class })));
vector.add(new MethodDescriptor(PropertyDeviceArea.class.getSuperclass().getMethod(
"setVisible", new Class[] { boolean.class })));
vector.add(new MethodDescriptor(PropertyDeviceArea.class.getMethod("setValueEditable",
new Class[] { boolean.class })));
vector.add(new MethodDescriptor(PropertyDeviceArea.class.getMethod(
"setAskConfirmation", new Class[] { boolean.class })));
vector.add(new MethodDescriptor(PropertyDeviceArea.class.getMethod("setSendValueMenu",
new Class[] { boolean.class })));
vector.add(new MethodDescriptor(PropertyDeviceArea.class.getMethod("validate",
new Class[] {})));
vector.add(new MethodDescriptor(PropertyDeviceArea.class.getMethod("setSimuled",
new Class[] { boolean.class })));
final MethodDescriptor[] methoddesc = new MethodDescriptor[vector.size()];
int index = 0;
final Enumeration<MethodDescriptor> enumeration = vector.elements();