    /**************************************************************************
     * Add a new value to the member (child) '@ARTICLE_NAME@'. It also
     * adds there its registered "article name". <p>
     *
     * @param value to be added
     * @see #set_@ESC_ARTICLE_NAME@(@CHILDTYPE_NAME@)
     * @see #set_@ESC_ARTICLE_NAME@(@CHILDTYPE_NAME@[]) how to add more
     *************************************************************************/
    public void set_@ESC_ARTICLE_NAME@ (long value) {
	set_@ESC_ARTICLE_NAME@ (new MobyInteger(value));
    }

    /**************************************************************************
     * Set new values to all children '@ARTICLE_NAME@'. It also adds
     * to each child its registered "article name". <p>
     *
     * @param value to be stored
     * @see #set_@ESC_ARTICLE_NAME@(@CHILDTYPE_NAME@[])
     * @see #set_@ESC_ARTICLE_NAME@(@CHILDTYPE_NAME@) how to add
     * only one value
     *************************************************************************/
    public void set_@ESC_ARTICLE_NAME@ (long[] value) {
	this.@ESC_ARTICLE_NAME@ = new java.util.Vector<Object>();
	for (int i = 0; i < value.length; i++)
	    set_@ESC_ARTICLE_NAME@ (value[i]);
    }

    /**************************************************************************
     * Return values of all '@ARTICLE_NAME@', as Java primitive types. <p>
     *
     * If you need access to BioMoby attributes (such as <tt>id</tt>
     * and <tt>namespace</tt>) of individual '@ARTICLE_NAME@'s use
     * rather {@link #getMoby_@ESC_ARTICLE_NAME@}.
     *************************************************************************/
    public long[] get_@ESC_ARTICLE_NAME@() throws org.biomoby.shared.MobyException{
	long[] result_I_am_sorry_that_this_produces_a_warning = new long [ @ESC_ARTICLE_NAME@.size() ];
	for (int i = 0; i < @ESC_ARTICLE_NAME@.size(); i++)
	    result_I_am_sorry_that_this_produces_a_warning[i] =
		((MobyInteger)@ESC_ARTICLE_NAME@.elementAt (i)).getIntValue();
	return result_I_am_sorry_that_this_produces_a_warning;
    }

