All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.poi.xwpf.model.XWPFHyperlinkDecorator Maven / Gradle / Ivy

There is a newer version: 5.2.5
Show newest version
/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
==================================================================== */
package org.apache.poi.xwpf.model;

import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTHyperlink;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTR;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTText;
import org.apache.poi.xwpf.usermodel.XWPFParagraph;

/**
 * Decorator class for XWPFParagraph allowing to add hyperlinks 
 *  found in paragraph to its text.
 *  
 * TODO - add the hyperlink text in the right place, and not just
 *  at the end
 */
public class XWPFHyperlinkDecorator extends XWPFParagraphDecorator {
	private StringBuffer hyperlinkText;
	
	/**
	 * @param nextDecorator The next decorator to use
	 * @param outputHyperlinkUrls Should we output the links too, or just the link text?
	 */
	public XWPFHyperlinkDecorator(XWPFParagraphDecorator nextDecorator, boolean outputHyperlinkUrls) {
		this(nextDecorator.paragraph, nextDecorator, outputHyperlinkUrls);
	}
	
	/**
	 * @param prgrph The paragraph of text to work on
	 * @param outputHyperlinkUrls Should we output the links too, or just the link text?
	 */
	public XWPFHyperlinkDecorator(XWPFParagraph prgrph, XWPFParagraphDecorator nextDecorator, boolean outputHyperlinkUrls) {
		super(prgrph, nextDecorator);
		
		hyperlinkText = new StringBuffer();
		
		// loop over hyperlink anchors
		for(CTHyperlink link : paragraph.getCTP().getHyperlinkArray()){
			for (CTR r : link.getRArray()) {
				// Loop over text runs
				for (CTText text : r.getTArray()){
					hyperlinkText.append(text.getStringValue());
				}
			}
			if(outputHyperlinkUrls && paragraph.getDocument().getHyperlinkByID(link.getId()) != null) {
				hyperlinkText.append(" <"+paragraph.getDocument().getHyperlinkByID(link.getId()).getURL()+">");
			}
		}
	}
	
	public String getText()
	{
		return super.getText() + hyperlinkText;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy