aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2022-01-11 19:43:04 +0000
committerPJ Fanning <fanningpj@apache.org>2022-01-11 19:43:04 +0000
commit45770bd5498035512a500b953015bbd814f6b1fd (patch)
tree0ea4e55b23e9cf6518d2ffcde6c1558ed1f4cf77
parent87e4872a27b44198d5a01ec25aa1052bb5e9cc9f (diff)
downloadpoi-45770bd5498035512a500b953015bbd814f6b1fd.tar.gz
poi-45770bd5498035512a500b953015bbd814f6b1fd.zip
update docs
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1896923 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--poi/src/main/java/org/apache/poi/sl/extractor/SlideShowExtractor.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/poi/src/main/java/org/apache/poi/sl/extractor/SlideShowExtractor.java b/poi/src/main/java/org/apache/poi/sl/extractor/SlideShowExtractor.java
index 05ef7a4642..8b7b960db5 100644
--- a/poi/src/main/java/org/apache/poi/sl/extractor/SlideShowExtractor.java
+++ b/poi/src/main/java/org/apache/poi/sl/extractor/SlideShowExtractor.java
@@ -44,6 +44,7 @@ import org.apache.poi.sl.usermodel.TableShape;
import org.apache.poi.sl.usermodel.TextParagraph;
import org.apache.poi.sl.usermodel.TextRun;
import org.apache.poi.sl.usermodel.TextShape;
+import org.apache.poi.util.Internal;
import org.apache.poi.util.LocaleUtil;
import org.apache.poi.util.Removal;
@@ -407,7 +408,8 @@ public class SlideShowExtractor<
}
/**
- * Extract the used codepoints for font embedding / subsetting
+ * Extract the used codepoints for font embedding / subsetting. This method is not intended for public use.
+ *
* @param typeface the typeface/font family of the textruns to examine
* @param italic use {@code true} for italic TextRuns, {@code false} for non-italic ones and
* {@code null} if it doesn't matter
@@ -415,6 +417,7 @@ public class SlideShowExtractor<
* {@code null} if it doesn't matter
* @return a bitset with the marked/used codepoints
*/
+ @Internal
public SparseBitSet getCodepointsInSparseBitSet(String typeface, Boolean italic, Boolean bold) {
final SparseBitSet glyphs = new SparseBitSet();