/**
*
*/
package it.xsemantics.example.fj.ui.wizard;
import java.util.List;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;
/**
* @author Lorenzo Bettini
*
*/
public class FJProjectCreatorCustom extends FJProjectCreator {
@Override
protected List<String> getAllFolders() {
return ImmutableList.of(SRC_ROOT);
}
@Override
protected List<String> getRequiredBundles() {
return Lists.newArrayList(DSL_GENERATOR_PROJECT_NAME);
}
}