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

org.topbraid.jenax.util.AutoCompleteManager Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
package org.topbraid.jenax.util;

/**
 * A singleton that holds a reference to an installed AutoCompleteEngine (if one exists).
 * 
 * @author Holger Knublauch
 */
public class AutoCompleteManager {
	
	private static AutoCompleteEngine engine;
	
	public static AutoCompleteEngine getEngine() {
		return engine;
	}
	
	public static void setEngine(AutoCompleteEngine engine) {
		AutoCompleteManager.engine = engine;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy