| |
|
| java.lang.Object com.sun.perseus.parser.AbstractParser com.sun.perseus.parser.UnicodeParser
UnicodeParser | public class UnicodeParser extends AbstractParser (Code) | | The UnicodeParser class converts attributes conforming to the
<hkern> 's u1/u2 attributes syntax.
version: $Id: UnicodeParser.java,v 1.2 2006/04/21 06:40:32 st125089 Exp $ |
Method Summary | |
public int[][] | parseUnicode(String unicode) Parses the input unicode range value and turns it into a
set of two (possibly identical) unicode range values. | protected int[] | parseUnicodeRange(char endOn) Parameters: endOn - specifies the character value that defines the end of the unicode value. |
parseUnicode | public int[][] parseUnicode(String unicode) throws IllegalArgumentException(Code) | | Parses the input unicode range value and turns it into a
set of two (possibly identical) unicode range values.
Parameters: unicode - unicode range string to parse an array of unicode ranges of size 2. throws: IllegalArgumentException - if unicode is null. |
parseUnicodeRange | protected int[] parseUnicodeRange(char endOn)(Code) | | Parameters: endOn - specifies the character value that defines the end of the unicode value. an array of two integers defining the lower and upper values inthe unicode range. |
|
|
|