diff options
author | Sven Gothel <[email protected]> | 2011-04-01 15:11:05 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-04-01 15:11:05 +0200 |
commit | f47753b63c9530a6af36cb69135dee0421abfe6b (patch) | |
tree | 88f970a6c5af5c4fa3ef1b2a9fffe415def1bb3e /src/jogl/classes/com | |
parent | 259d018ed9511ccca0d8e792e443ce9f3d9f39ea (diff) |
Font: +getName / +getAllNames / +isPrintableCharacter
Diffstat (limited to 'src/jogl/classes/com')
-rw-r--r-- | src/jogl/classes/com/jogamp/graph/font/Font.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/jogl/classes/com/jogamp/graph/font/Font.java b/src/jogl/classes/com/jogamp/graph/font/Font.java index a4ab527e2..a34e81ccd 100644 --- a/src/jogl/classes/com/jogamp/graph/font/Font.java +++ b/src/jogl/classes/com/jogamp/graph/font/Font.java @@ -71,6 +71,7 @@ public interface Font { public String getName(); + public String getAllNames(String separator); public Metrics getMetrics(); public Glyph getGlyph(char symbol); @@ -79,4 +80,6 @@ public interface Font { public float getStringWidth(String string, float pixelSize); public float getStringHeight(String string, float pixelSize); public AABBox getStringBounds(CharSequence string, float pixelSize); + + public boolean isPrintableChar( char c ); }
\ No newline at end of file |