aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/jogamp/graph
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-02-22 03:36:18 +0100
committerSven Gothel <[email protected]>2012-02-22 03:36:18 +0100
commitd2d3720d940566608ea14b14cb4aeb5890ff21e1 (patch)
tree33053f481680040d626030585eda207f85d88149 /src/jogl/classes/com/jogamp/graph
parent4f175a49e682e0c98d137337a231617b5ae1f9dc (diff)
FontSet (graph): get*(..) throws IOException - Proper passing and handling of IOException
Diffstat (limited to 'src/jogl/classes/com/jogamp/graph')
-rw-r--r--src/jogl/classes/com/jogamp/graph/font/FontSet.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/jogl/classes/com/jogamp/graph/font/FontSet.java b/src/jogl/classes/com/jogamp/graph/font/FontSet.java
index 0cee81124..d376922ab 100644
--- a/src/jogl/classes/com/jogamp/graph/font/FontSet.java
+++ b/src/jogl/classes/com/jogamp/graph/font/FontSet.java
@@ -27,6 +27,8 @@
*/
package com.jogamp.graph.font;
+import java.io.IOException;
+
public interface FontSet {
@@ -54,7 +56,7 @@ public interface FontSet {
/** ITALIC style bit flag */
public static final int STYLE_ITALIC = 1 << 3;
- Font getDefault();
+ Font getDefault() throws IOException ;
- Font get(int family, int stylebits);
+ Font get(int family, int stylebits) throws IOException ;
}