/** * Initializes the <code>FtAuthors</code> by the FtAuthors <code>source</code>. * * @param source */ public void setup(FtAuthors source) { int size; setId(source.getId()); setXmlLang(source.getXmlLang()); this.person_.clear(); size = source.person_.size(); for (int i = 0; i < size; i++) { addPerson((FtPerson) source.getPerson(i).clone()); } }
/** * Sets the property value by String. * * @param string */ public void setIdByString(String string) { setId(string); }