Package org.apache.lenya.cms.publication

Examples of org.apache.lenya.cms.publication.PublicationHelper


     * @throws ProcessingException if the search for references failed.
     */
    public Document[] getReferences(String area) throws ProcessingException {
       
        try {
            PublicationHelper pubHelper = new PublicationHelper(this.publication);
            DocumentBuilder builder = publication.getDocumentBuilder();
            Document[] documents = pubHelper.getAllDocuments(area);
            ArrayList targetDocuments = new ArrayList();

            for (int docIndex = 0; docIndex < documents.length; docIndex++) {
                String[] links = getInternalLinks(documents[docIndex].getFile());
               
View Full Code Here

TOP

Related Classes of org.apache.lenya.cms.publication.PublicationHelper

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.