@param g Graphics context. @return the descent of the parsed text.
(Graphics g)
| 481 | * @return the descent of the parsed text. |
| 482 | */ |
| 483 | public int getDescent(Graphics g) { |
| 484 | if(g==null) { |
| 485 | return 0; |
| 486 | } |
| 487 | parseText(g); |
| 488 | return descent; |
| 489 | } |
| 490 | |
| 491 | /** |
| 492 | * @param g Graphics context. |