| java.lang.Object org.apache.harmony.awt.gl.font.FontProperty
All known Subclasses: org.apache.harmony.awt.gl.font.WinFontProperty, org.apache.harmony.awt.gl.font.LinuxFontProperty,
FontProperty | public class FontProperty (Code) | | Class containing font property information. This information can be found
in font.property files. See API documentation, logical fonts description part.
|
Method Summary | |
public String | getEncoding() Returns encoding used in this font property. | public int[] | getExclusionRange() Returns an array of exclusion ranges. | public String | getFileName() Returns file name of the font that is described by this font property. | public String | getName() Returns font name of this font property. | public int | getStyle() Returns font style of this font property. | public boolean | isCharExcluded(char ch) Returns true if specified character covered by exclusion ranges of this
font property, false otherwise. |
exclRange | int[] exclRange(Code) | | |
getEncoding | public String getEncoding()(Code) | | Returns encoding used in this font property.
|
getExclusionRange | public int[] getExclusionRange()(Code) | | Returns an array of exclusion ranges. This array contain pairs of
low and high bounds of the intervals of characters to ignore in
total Unicode characters range.
|
getFileName | public String getFileName()(Code) | | Returns file name of the font that is described by this font property.
|
getName | public String getName()(Code) | | Returns font name of this font property.
|
getStyle | public int getStyle()(Code) | | Returns font style of this font property.
|
isCharExcluded | public boolean isCharExcluded(char ch)(Code) | | Returns true if specified character covered by exclusion ranges of this
font property, false otherwise.
Parameters: ch - specified char to check |
|
|