()
| 681 | } |
| 682 | |
| 683 | public int getSecondLength() { |
| 684 | if (getSecondString() == null) { |
| 685 | return 0; |
| 686 | } |
| 687 | if (getSecondString().length() == 0) { |
| 688 | return 0; |
| 689 | } |
| 690 | return FontCache.getFont(false, FontCache.baloon).stringWidth(getSecondString()); |
| 691 | } |
| 692 | |
| 693 | public int getFirstLength() { |
| 694 | if (getFirstString() == null) { |
no test coverage detected