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 int
featureRequired
private int[]
features
private java.lang.String
tag
-
Constructor Summary
Constructors Constructor Description LanguageRecord()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getFeatureRequired()
Retrieves the feature required of the language record.int[]
getFeatures()
Retrieves the features of the language record.java.lang.String
getTag()
Retrieves the tag of the language record.void
setFeatureRequired(int featureRequired)
Sets the feature required of the language record.void
setFeatures(int[] features)
Sets the features of the language record.void
setTag(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
-
-