/* FakeSearchEngine.java - October 1999 - Scott Parent */ import java.util.*; /** * @com.register ( clsid=9C8CEA63-921E-11D3-91AF-004095013729, typelib=3BC0D8AB-8981-11D3-91AE-004095013729 ) */ public class FakeSearchEngine extends SearchEngineFacade { private SearchResult fakeResults[]; public FakeSearchEngine() { // populate dummy results try { fakeResults = new SearchResult[ 3]; fakeResults[ 0] = new SearchResult( "http://www.mwc.edu/~pclark/vrmltut.html", "Pete's Page -- The Easy VRML Tutorial", 1, "Find your music NOW! Artist Album Title Song Title. The Easy VRML Tutorial. This VRML tutorial was designed to teach folks the basics of programming ASCII.", new Date(99,3,15), 4096); fakeResults[ 1] = new SearchResult( "http://www.limber.org/globs.html", "Touring the Galactic Halo by VRML", 2, "A Virtual Tour of the Milky Way Globular Cluster System. Our knowledge of the Sun's position in the Milky Way Galaxy began in the second decade of this...", new Date(98,12,28), 5 * 1024); fakeResults[ 2] = new SearchResult( "http://nssdc.gsfc.nasa.gov/cohoweb/vrml/coho.html", "Virtual COHO: Space Physics in VRML", 3, "Virtual COHO - Space Physics in VRML. [About Virtual COHO / COHOWeb / Feedback] 3-D scientific visualizations have been created in the Virtual Reality...", new Date(97,10,9), 5 * 1024); } catch( java.net.MalformedURLException x){ } } public int SubmitQuery(String queryText, int listingIndex, Vector theCollection) { int resultCount = 0; int i; while( (i = (resultCount + listingIndex - 1)) < fakeResults.length) { try { Thread.sleep( 1000); } catch( InterruptedException x) {} theCollection.addElement( fakeResults[ i]); resultCount++; } return resultCount; } }