(Graphics g)
| 1042 | } |
| 1043 | |
| 1044 | public int getAscent(Graphics g) { |
| 1045 | if((g==null)||(f==null)) { |
| 1046 | return 0; |
| 1047 | } |
| 1048 | return g.getFontMetrics(f).getAscent(); |
| 1049 | } |
| 1050 | |
| 1051 | public int getDescent(Graphics g) { |
| 1052 | if((g==null)||(f==null)) { |
no test coverage detected