/**
* @see java.beans.BeanInfo#getBeanDescriptor()
*/
public BeanDescriptor getBeanDescriptor() {
BeanDescriptor bd = new BeanDescriptor(BEAN);
bd.setName("any");
bd.setDisplayName(XMLBean.concatName(schema.XSD_URI, "any"));
bd.setValue("ignore", new String[] { schema.XSD_URI+"#annotation" });
try {
bd.setValue("content", new element(schema.XSD_URI, "annotation", "0", "unbounded"));
} catch (Exception e) {
Gloze.logger.error(e.getMessage());
}
return bd;
}