PDPanoseClassification.java (pdfbox-2.0.23-src) | : | PDPanoseClassification.java (pdfbox-2.0.24-src) | ||
---|---|---|---|---|
skipping to change at line 29 | skipping to change at line 29 | |||
/** | /** | |||
* Represents a 10-byte <a href="http://monotype.de/services/pan2">PANOSE classi fication</a>. | * Represents a 10-byte <a href="http://monotype.de/services/pan2">PANOSE classi fication</a>. | |||
* | * | |||
* @author John Hewson | * @author John Hewson | |||
*/ | */ | |||
public class PDPanoseClassification | public class PDPanoseClassification | |||
{ | { | |||
private final byte[] bytes; | private final byte[] bytes; | |||
PDPanoseClassification(byte[] bytes) | public PDPanoseClassification(byte[] bytes) | |||
{ | { | |||
this.bytes = bytes; | this.bytes = bytes; | |||
} | } | |||
public int getFamilyKind() | public int getFamilyKind() | |||
{ | { | |||
return bytes[0]; | return bytes[0]; | |||
} | } | |||
public int getSerifStyle() | public int getSerifStyle() | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |