(final String fontName)
| 1896 | } |
| 1897 | |
| 1898 | private AlbiteBitmapFont loadBitmapFont(final String fontName) { |
| 1899 | |
| 1900 | AlbiteBitmapFont font; |
| 1901 | |
| 1902 | try { |
| 1903 | font = new AlbiteBitmapFont(fontName); |
| 1904 | } catch (IOException ioe) { |
| 1905 | throw new RuntimeException("Couldn't load font."); |
| 1906 | } catch (AlbiteFontException afe) { |
| 1907 | throw new RuntimeException("Couldn't load font."); |
| 1908 | } |
| 1909 | |
| 1910 | return font; |
| 1911 | } |
| 1912 | |
| 1913 | public final void hideNotify() { |
| 1914 | stopClock(); |
no outgoing calls
no test coverage detected