Package com.itextpdf.io.font.otf
Class ScriptRecord
- java.lang.Object
-
- com.itextpdf.io.font.otf.ScriptRecord
-
public class ScriptRecord extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private LanguageRecord
defaultLanguage
private LanguageRecord[]
languages
private java.lang.String
tag
-
Constructor Summary
Constructors Constructor Description ScriptRecord()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LanguageRecord
getDefaultLanguage()
Retrieves the default language of the Script Record.LanguageRecord[]
getLanguages()
Retrieves the languages of the Script Record.java.lang.String
getTag()
Retrieves the tag of the Script Record.void
setDefaultLanguage(LanguageRecord defaultLanguage)
Sets the default language of the Script Record.void
setLanguages(LanguageRecord[] languages)
Sets the languages of the Script Record.void
setTag(java.lang.String tag)
Sets the tag of the Script Record.
-
-
-
Field Detail
-
tag
private java.lang.String tag
-
defaultLanguage
private LanguageRecord defaultLanguage
-
languages
private LanguageRecord[] languages
-
-
Method Detail
-
getTag
public java.lang.String getTag()
Retrieves the tag of the Script Record.- Returns:
- tag of record
-
setTag
public void setTag(java.lang.String tag)
Sets the tag of the Script Record.- Parameters:
tag
- tag of record
-
getDefaultLanguage
public LanguageRecord getDefaultLanguage()
Retrieves the default language of the Script Record.- Returns:
- default language
-
setDefaultLanguage
public void setDefaultLanguage(LanguageRecord defaultLanguage)
Sets the default language of the Script Record.- Parameters:
defaultLanguage
- default language
-
getLanguages
public LanguageRecord[] getLanguages()
Retrieves the languages of the Script Record.- Returns:
- languages
-
setLanguages
public void setLanguages(LanguageRecord[] languages)
Sets the languages of the Script Record.- Parameters:
languages
- languages
-
-