org.docx4j.finders.RangeFinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docx4j-core Show documentation
Show all versions of docx4j-core Show documentation
docx4j is a library which helps you to work with the Office Open
XML file format as used in docx
documents, pptx presentations, and xlsx spreadsheets.
package org.docx4j.finders;
import java.util.ArrayList;
import java.util.List;
import org.docx4j.TraversalUtil.CallbackImpl;
import org.docx4j.wml.CTBookmark;
import org.docx4j.wml.CTMarkupRange;
/**
* This is a simplified version of
* org.docx4j.model.datastorage.BookmarkRenumber.RangeTraverser
*/
public class RangeFinder extends CallbackImpl {
public RangeFinder() {
}
List starts = new ArrayList();
/**
* @return the starts
*/
public List getStarts() {
return starts;
}
List ends = new ArrayList();
/**
* @return the ends
*/
public List getEnds() {
return ends;
}
@Override
public List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy