[aXSL-commit] SF.net SVN: axsl:[2981] trunk/axsl/axsl-font/src/main /java/org/axsl/font/ConsumerFon
An API for XSL-FO.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2026-03-07 09:47:05
|
Revision: 2981
http://sourceforge.net/p/axsl/code/2981
Author: victormote
Date: 2026-03-07 09:47:03 +0000 (Sat, 07 Mar 2026)
Log Message:
-----------
Rename method for clarity. Add explanatory javadoc.
Modified Paths:
--------------
trunk/axsl/axsl-font/src/main/java/org/axsl/font/ConsumerFont.java
Modified: trunk/axsl/axsl-font/src/main/java/org/axsl/font/ConsumerFont.java
===================================================================
--- trunk/axsl/axsl-font/src/main/java/org/axsl/font/ConsumerFont.java 2026-03-07 00:03:32 UTC (rev 2980)
+++ trunk/axsl/axsl-font/src/main/java/org/axsl/font/ConsumerFont.java 2026-03-07 09:47:03 UTC (rev 2981)
@@ -50,12 +50,13 @@
FontConsumer getFontConsumer();
/**
- * Returns the list of child {@link FontUse} instances.
+ * Returns the list of child {@link FontUse} instances, i.e. the list of {@link FontUse} instances that have been
+ * used by {@link #getFontConsumer}.
* This will ordinarily contain only one instance, but in the case of Type1 fonts that require multiple encodings
* for access to all glyphs, it may contain more.
* @return The list of child {@link FontUse} instances.
*/
- List<? extends FontUse> getUsedFontUses();
+ List<? extends FontUse> getFontUses();
/**
* Returns the raw font file content, so that it can be embedded in other documents.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|