* @param job MJOb object to fill
* @param storage Storage type that should be set
* @param output Output type that should be set
*/
protected void fillOutputForm(MJob job, StorageType storage, OutputFormat output) {
MFormList forms = job.getFrameworkPart();
forms.getEnumInput("output.storageType").setValue(storage);
forms.getEnumInput("output.outputFormat").setValue(output);
forms.getStringInput("output.outputDirectory").setValue(getMapreduceDirectory());
}