Class SubtitleTemplate
- java.lang.Object
-
- com.orchestranetworks.addon.dex.configuration.SubtitleTemplate
-
public final class SubtitleTemplate extends java.lang.ObjectSpecifies the configuration used for the subtitle template in an exported file. The template can include a subtitle's starting position and text style.- Since:
- 2.3.0
-
-
Constructor Summary
Constructors Constructor Description SubtitleTemplate()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DataTemplategetDataTemplate()Returns theDataTemplateinstance to represent the subtitle template.java.lang.StringgetSubtitle()Returns the subtitle which will be exported in an Excel file.booleanisSubtitleExported()Returns thetrueif the subtitle is exported in an Excel file.voidsetDataTemplate(DataTemplate dataTemplate)Sets theDataTemplateinstance to represent the subtitle template.voidsetSubtitle(java.lang.String subtitle)Sets the subtitle which will be exported in an Excel file.voidsetSubtitleExported(boolean subtitleExported)Sets whether the subtitle is exported in an Excel file.
-
-
-
Method Detail
-
getDataTemplate
public DataTemplate getDataTemplate()
Returns theDataTemplateinstance to represent the subtitle template. The template can include the starting position and text style in Excel file.
-
setDataTemplate
public void setDataTemplate(DataTemplate dataTemplate)
Sets theDataTemplateinstance to represent the subtitle template. The template can include the starting position and text style in Excel file.
-
isSubtitleExported
public boolean isSubtitleExported()
Returns thetrueif the subtitle is exported in an Excel file.
-
setSubtitleExported
public void setSubtitleExported(boolean subtitleExported)
Sets whether the subtitle is exported in an Excel file.
-
getSubtitle
public java.lang.String getSubtitle()
Returns the subtitle which will be exported in an Excel file.
-
setSubtitle
public void setSubtitle(java.lang.String subtitle)
Sets the subtitle which will be exported in an Excel file.
-
-