All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kg.apc.emulators.TestFontMetrics Maven / Gradle / Ivy

package kg.apc.emulators;

import java.awt.Font;
import java.awt.FontMetrics;

public class TestFontMetrics
     extends FontMetrics
{
   /**
    *
    * @param f
    */
   public TestFontMetrics(Font f)
   {
      super(f);
   }

   @Override
   public int getHeight()
   {
      return 10;
   }

   @Override
   public int stringWidth(String str)
   {
      return str.length();
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy