/** {@inheritDoc} */
 public int getMaxAscent(int size) {
   return metric.getMaxAscent(family, style, size);
 }
 /** {@inheritDoc} */
 public int getAscender(int size) {
   return metric.getAscender(family, style, size);
 }
 /** {@inheritDoc} */
 public boolean hasChar(char c) {
   return metric.hasChar(family, style, Java2DFontMetrics.FONT_SIZE, c);
 }
 /** {@inheritDoc} */
 public java.awt.Font getFont(int size) {
   return metric.getFont(family, style, size);
 }
 /** {@inheritDoc} */
 public int[] getWidths() {
   return metric.getWidths(family, style, Java2DFontMetrics.FONT_SIZE);
 }
 /** {@inheritDoc} */
 public int getWidth(int i, int size) {
   return metric.width(i, family, style, size);
 }
 /** {@inheritDoc} */
 public int getXHeight(int size) {
   return metric.getXHeight(family, style, size);
 }