| 25 | package org.microemu.device.impl; |
| 26 | |
| 27 | public interface Font { |
| 28 | |
| 29 | int charWidth(char ch); |
| 30 | |
| 31 | int charsWidth(char[] ch, int offset, int length); |
| 32 | |
| 33 | int getBaselinePosition(); |
| 34 | |
| 35 | int getHeight(); |
| 36 | |
| 37 | int stringWidth(String str); |
| 38 | |
| 39 | } |
no outgoing calls
no test coverage detected