This is essentially a facade that delegates the requests to the appropriate implementation classes. @author Brett Spell
144145146147148149150151152
*/ public synchronized static WordNetDatabase getFileInstance() { if (fileInstance == null) { fileInstance = new FileDatabase(); } return fileInstance; }