(Graphics g)
| 1049 | } |
| 1050 | |
| 1051 | public int getDescent(Graphics g) { |
| 1052 | if((g==null)||(f==null)) { |
| 1053 | return 0; |
| 1054 | } |
| 1055 | return g.getFontMetrics(f).getDescent(); |
| 1056 | } |
| 1057 | |
| 1058 | public int getMaxAscent(Graphics g) { |
| 1059 | if((g==null)||(f==null)) { |
no test coverage detected