What is the hack that allows the
| public Element getWildcard()
| {
| return getProxyFactoryConfig();
| }
|
| /**
| * This is a hack to make proxy-factory-config parsed as
| * unresolved element of a wildcard
| */
| @XmlAnyElement(lax=true)
| public void setWildcard(Element e)
| {
| setProxyFactoryConfig(e);
| }
|
but not the previous
| public Element getProxyFactoryConfig()
| {
| return proxyFactoryConfig;
| }
|
| @XmlAnyElement(lax=true)
| public void setProxyFactoryConfig(Element proxyFactoryConfig)
| {
| this.proxyFactoryConfig = proxyFactoryConfig;
| }
|
You have a hard-coded callback for the wildcard element contents?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4088139#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...