Interface FontFace
-
- All Known Implementing Classes:
SimpleFontFace
public interface FontFace- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEot()FontgetFont()Returns a non-null instance of java.awt.Font representing the font face.StringgetName()Returns the non-null name of the font face.StringgetPdf()StringgetSvg()StringgetTtf()Returns the TTF file, if the font face has specified one (the font face does not specify a TTF file in case it maps a JVM available font such as a Java logical font or a system font).StringgetWoff()
-
-
-
Method Detail
-
getName
String getName()
Returns the non-null name of the font face.
-
getTtf
String getTtf()
Returns the TTF file, if the font face has specified one (the font face does not specify a TTF file in case it maps a JVM available font such as a Java logical font or a system font).
-
getFont
Font getFont()
Returns a non-null instance of java.awt.Font representing the font face.
-
getPdf
String getPdf()
-
getEot
String getEot()
-
getSvg
String getSvg()
-
getWoff
String getWoff()
-
-