(char[] data, int offset, int length, int x, int y)
| 909 | /// |
| 910 | /// use drawString instead, this method is inefficient |
| 911 | public void drawChars(char[] data, int offset, int length, int x, int y) { |
| 912 | if (!(current instanceof CustomFont)) { |
| 913 | drawString(new String(data, offset, length), x, y); |
| 914 | } else { |
| 915 | CustomFont f = (CustomFont) current; |
| 916 | f.drawChars(this, data, offset, length, x, y); |
| 917 | } |
| 918 | } |
| 919 | |
| 920 | /// Draws the image so its top left coordinate corresponds to x/y |
| 921 | /// |
nothing calls this directly
no test coverage detected