CIDSystemInfo.java (pdfbox-2.0.23-src) | : | CIDSystemInfo.java (pdfbox-2.0.24-src) | ||
---|---|---|---|---|
skipping to change at line 31 | skipping to change at line 31 | |||
* Represents a CIDSystemInfo for the FontMapper API. | * Represents a CIDSystemInfo for the FontMapper API. | |||
* | * | |||
* @author John Hewson | * @author John Hewson | |||
*/ | */ | |||
public final class CIDSystemInfo | public final class CIDSystemInfo | |||
{ | { | |||
private final String registry; | private final String registry; | |||
private final String ordering; | private final String ordering; | |||
private final int supplement; | private final int supplement; | |||
CIDSystemInfo(String registry, String ordering, int supplement) | public CIDSystemInfo(String registry, String ordering, int supplement) | |||
{ | { | |||
this.registry = registry; | this.registry = registry; | |||
this.ordering = ordering; | this.ordering = ordering; | |||
this.supplement = supplement; | this.supplement = supplement; | |||
} | } | |||
public String getRegistry() | public String getRegistry() | |||
{ | { | |||
return registry; | return registry; | |||
} | } | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |