Example #1
0
 /**
  * Checks to see if the <code>Font</code> has uniform line metrics. A composite font may consist
  * of several different fonts to cover various character sets. In such cases, the <code>
  * FontLineMetrics</code> objects are not uniform. Different fonts may have a different ascent,
  * descent, metrics and so on. This information is sometimes necessary for line measuring and line
  * breaking.
  *
  * @return <code>true</code> if the font has uniform line metrics; <code>false</code> otherwise.
  * @see java.awt.Font#hasUniformLineMetrics()
  */
 public boolean hasUniformLineMetrics() {
   return font.hasUniformLineMetrics();
 }