    /**************************************************************************
     * Set a primary output set (a Collection) into the 'response'. <p>
     *
     * @param response represents output data that will go to a client
     * @param values is to be stored in the 'response'
     * @throws org.biomoby.shared.MobyException if something goes wrong
     *************************************************************************/
    public void set_@ESC_ARTICLE_NAME@Set (MobyJob response, @DATATYPE@[] values)
	throws org.biomoby.shared.MobyException {
	response.setDataSet (values, "@ARTICLE_NAME@");
    }
    
    /**************************************************************************
     * Set a primary output set (a Collection) into the 'response'. <p>
     *
     * @param response represents output data that will go to a client
     * @param values is to be stored in the 'response'
     * @throws org.biomoby.shared.MobyException if something goes wrong
     *************************************************************************/
    public void set_@ESC_ARTICLE_NAME@Set (MobyJob response, java.util.Collection<@DATATYPE@> values)
	throws org.biomoby.shared.MobyException {
	response.setDataSet (values.toArray(new @DATATYPE@[values.size()]), "@ARTICLE_NAME@");
    }
