diff options
author | Sven Gothel <[email protected]> | 2012-02-22 03:36:18 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-02-22 03:36:18 +0100 |
commit | d2d3720d940566608ea14b14cb4aeb5890ff21e1 (patch) | |
tree | 33053f481680040d626030585eda207f85d88149 /src/jogl/classes/com/jogamp | |
parent | 4f175a49e682e0c98d137337a231617b5ae1f9dc (diff) |
FontSet (graph): get*(..) throws IOException - Proper passing and handling of IOException
Diffstat (limited to 'src/jogl/classes/com/jogamp')
-rw-r--r-- | src/jogl/classes/com/jogamp/graph/font/FontSet.java | 6 |
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 ; } |