Jskad keyboards are now configured via keyboards.ini, a file that has

comments that explain its function.  It's quite simple.  This is in
response to Jeff C. H. Wu's request.
This commit is contained in:
dchandler 2003-05-14 03:25:36 +00:00
parent dcb36ec338
commit 78dc46a979
6 changed files with 115 additions and 23 deletions

View file

@ -332,8 +332,12 @@ public final class ThdlOptions {
}
// FIXMEDOC
private static Properties getPropertiesFromResource(Class resourceHolder,
/** The resource named resourceName is find and read in using
* resourceHolder for guidance. Default properties are provided
* by defaults if it is non-null. If suppressErrors is true, no
* exceptions will be thrown in normal operation. Otherwise, an
* unchecked exception may be thrown upon error. */
public static Properties getPropertiesFromResource(Class resourceHolder,
String resourceName,
boolean suppressErrors,
Properties defaults)