All Downloads are FREE. Search and download functionalities are using the official Maven repository.

prerna.forms.FormFactory Maven / Gradle / Ivy

There is a newer version: 4.2.2
Show newest version
package prerna.forms;

import prerna.engine.api.IEngine;
import prerna.engine.api.IEngine.ENGINE_TYPE;

public final class FormFactory {

	private FormFactory() {
		
	}
	
	public static AbstractFormBuilder getFormBuilder(IEngine engine) {
		ENGINE_TYPE eType = engine.getEngineType();
		if(eType == ENGINE_TYPE.JENA || eType == ENGINE_TYPE.SESAME) {
			return new RdfFormBuilder(engine);
		} else {
			return null;
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy