(char ch, Font font)
| 722 | PathIterator iter; |
| 723 | |
| 724 | public FontOutline(char ch, Font font) { |
| 725 | char textArray[] = new char[] { ch }; |
| 726 | FontRenderContext frc = getFontRenderContext(font); |
| 727 | GlyphVector gv = font.createGlyphVector(frc, textArray); |
| 728 | Shape shp = gv.getOutline(); |
| 729 | iter = shp.getPathIterator(null); |
| 730 | } |
| 731 | |
| 732 | public boolean isDone() { |
| 733 | return iter.isDone(); |
nothing calls this directly
no test coverage detected