Package org.docx4j.jaxb

Examples of org.docx4j.jaxb.XPathBinderAssociationIsPartialException


        List<Object> resultList = new ArrayList<Object>();
        for( JAXBAssociation association : associations ) {
          if (association.getJaxbObject()==null) {
           
            // this association is partial; see JAXBAssociation javadoc for more
            throw new XPathBinderAssociationIsPartialException("no object association for xpath result: "
                + association.getDomNode().getNodeName());
          } else {
            resultList.add(association.getJaxbObject());           
          }
        }
View Full Code Here

TOP

Related Classes of org.docx4j.jaxb.XPathBinderAssociationIsPartialException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.