170171172173174175176177
return tt == null ? null : tt.getStringValue(); } public void setCaptionWriter(String text) { ProperNameType tt = (ProperNameType) instanciateSimple(CAPTION_WRITER, text); setCaptionWriterProperty(tt); }
129130131132133134135136
* Return the artist property as String * @return string */ public String getArtist() { ProperNameType tt = (ProperNameType) getProperty(ARTIST); return tt == null ? null : tt.getStringValue(); }
174175176177178179180181