Package com.itextpdf.io.font.otf
Class LanguageRecord
- java.lang.Object
-
- com.itextpdf.io.font.otf.LanguageRecord
-
public class LanguageRecord extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private intfeatureRequiredprivate int[]featuresprivate java.lang.Stringtag
-
Constructor Summary
Constructors Constructor Description LanguageRecord()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetFeatureRequired()Retrieves the feature required of the language record.int[]getFeatures()Retrieves the features of the language record.java.lang.StringgetTag()Retrieves the tag of the language record.voidsetFeatureRequired(int featureRequired)Sets the feature required of the language record.voidsetFeatures(int[] features)Sets the features of the language record.voidsetTag(java.lang.String tag)Sets the tag of the language record.
-
-
-
Method Detail
-
getTag
public java.lang.String getTag()
Retrieves the tag of the language record.- Returns:
- tag of record
-
setTag
public void setTag(java.lang.String tag)
Sets the tag of the language record.- Parameters:
tag- tag of record
-
getFeatureRequired
public int getFeatureRequired()
Retrieves the feature required of the language record.- Returns:
- feature required
-
setFeatureRequired
public void setFeatureRequired(int featureRequired)
Sets the feature required of the language record.- Parameters:
featureRequired- feature required
-
getFeatures
public int[] getFeatures()
Retrieves the features of the language record.- Returns:
- features
-
setFeatures
public void setFeatures(int[] features)
Sets the features of the language record.- Parameters:
features- features
-
-