[jboss-dev-forums] [Design of POJO Server] - Re: Beta3 blocking issues

scott.stark@jboss.org do-not-reply at jboss.com
Mon Sep 24 15:27:50 EDT 2007


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#4088139

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4088139



More information about the jboss-dev-forums mailing list