    /**************************************************************************
     * Set a new value to the member (child) '@ARTICLE_NAME@'. It also
     * adds there its registered "article name". <p>
     *
     * @param value to be stored
     * @see #set_@ESC_ARTICLE_NAME@(@CHILDTYPE_NAME@)
     *************************************************************************/
    public void set_@ESC_ARTICLE_NAME@ (String value) {
	if (value == null) {
	    @ESC_ARTICLE_NAME@ = null;
	} else {
	    set_@ESC_ARTICLE_NAME@ (new MobyString (value));
	}
    }

    /**************************************************************************
     * Return value of '@ARTICLE_NAME@', as a primitive Java type. If
     * '@ARTICLE_NAME@' is empty, return an empty string (not
     * null). <p>
     *
     * If you need access to BioMoby attributes (such as <tt>id</tt>
     * and <tt>namespace</tt>) of '@ARTICLE_NAME@' use rather {@link
     * #getMoby_@ESC_ARTICLE_NAME@}.
     *************************************************************************/
    public String get_@ESC_ARTICLE_NAME@() {
	if (@ESC_ARTICLE_NAME@ == null) return "";
	return @ESC_ARTICLE_NAME@.getValue();
    }

