Interface Sound
-
public interface Sound
Generated by: JavaInterface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<FormatLangPair>
getFormats()
The formats and languages in which this sound is available.java.lang.String
getId()
Sound's identifier.java.lang.String
getText()
Text description of the sound, usually the words spoken.void
setFormats(java.util.List<FormatLangPair> val)
void
setId(java.lang.String val)
void
setText(java.lang.String val)
-
-
-
Method Detail
-
getFormats
java.util.List<FormatLangPair> getFormats()
The formats and languages in which this sound is available.- Returns:
- List>FormatLangPair<
- Since:
- ARI_0_0_1
-
getText
java.lang.String getText()
Text description of the sound, usually the words spoken.- Returns:
- String
- Since:
- ARI_0_0_1
-
setFormats
void setFormats(java.util.List<FormatLangPair> val)
- Parameters:
val
- The formats and languages in which this sound is available.- Since:
- ARI_0_0_1
-
setId
void setId(java.lang.String val)
- Parameters:
val
- Sound's identifier.- Since:
- ARI_0_0_1
-
getId
java.lang.String getId()
Sound's identifier.- Returns:
- String
- Since:
- ARI_0_0_1
-
setText
void setText(java.lang.String val)
- Parameters:
val
- Text description of the sound, usually the words spoken.- Since:
- ARI_0_0_1
-
-