aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl
diff options
context:
space:
mode:
Diffstat (limited to 'src/jogl')
-rw-r--r--src/jogl/classes/jogamp/graph/font/FontConstructor.java12
-rw-r--r--src/jogl/classes/jogamp/graph/font/typecast/ot/OTFontCollection.java4
2 files changed, 12 insertions, 4 deletions
diff --git a/src/jogl/classes/jogamp/graph/font/FontConstructor.java b/src/jogl/classes/jogamp/graph/font/FontConstructor.java
index fa176ead9..2732d07cb 100644
--- a/src/jogl/classes/jogamp/graph/font/FontConstructor.java
+++ b/src/jogl/classes/jogamp/graph/font/FontConstructor.java
@@ -34,6 +34,14 @@ import java.io.InputStream;
import com.jogamp.graph.font.Font;
public interface FontConstructor {
- Font create(final File file) throws IOException ;
- Font create(final InputStream stream, int streamLen) throws IOException ;
+ /**
+ * @param file The font file
+ */
+ Font create(final File file) throws IOException;
+
+ /**
+ * @param istream The font input stream
+ * @param streamLen the length of the font segment in the stream
+ */
+ Font create(final InputStream stream, int streamLen) throws IOException;
}
diff --git a/src/jogl/classes/jogamp/graph/font/typecast/ot/OTFontCollection.java b/src/jogl/classes/jogamp/graph/font/typecast/ot/OTFontCollection.java
index be84a951c..ed07cb30a 100644
--- a/src/jogl/classes/jogamp/graph/font/typecast/ot/OTFontCollection.java
+++ b/src/jogl/classes/jogamp/graph/font/typecast/ot/OTFontCollection.java
@@ -67,7 +67,7 @@ public class OTFontCollection {
/**
* @param istream The OpenType font input stream
- * @param streamLen TODO
+ * @param streamLen the length of the OpenType font segment in the stream
*/
public static OTFontCollection create(final InputStream istream, final int streamLen) throws IOException {
final OTFontCollection fc = new OTFontCollection();
@@ -141,7 +141,7 @@ public class OTFontCollection {
/**
* @param is The OpenType font stream
- * @param streamLen the total length of the stream
+ * @param streamLen the length of the OpenType font segment in the stream
*/
protected void read(final InputStream is, final int streamLen) throws IOException {
_pathName = "";