    /**************************************************************************
     * 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@ (boolean value) {
	set_@ESC_ARTICLE_NAME@ (new MobyBoolean (value));
    }

    /**************************************************************************
     * Return value of '@ARTICLE_NAME@', as Java boolean type. If
     * '@ARTICLE_NAME@' is empty, return false. <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@}. <p>
     *
     * @see #getMoby_@ESC_ARTICLE_NAME@
     *************************************************************************/
    public boolean is_@ESC_ARTICLE_NAME@() {
	if (@ESC_ARTICLE_NAME@ == null) return false;
	return @ESC_ARTICLE_NAME@.getBooleanValue();
    }

