/[classpath]/classpath/javax/swing/UIDefaults.java
ViewVC logotype

Diff of /classpath/javax/swing/UIDefaults.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.12.2.5 by gnu_andrew, Tue Aug 2 20:12:37 2005 UTC revision 1.12.2.6 by gnu_andrew, Wed Nov 2 00:43:49 2005 UTC
# Line 577  public class UIDefaults extends Hashtabl Line 577  public class UIDefaults extends Hashtabl
577     *     *
578     * @param key the key to the requested entry     * @param key the key to the requested entry
579     *     *
580     * @return the boolean entry for <code>key</code> or null if no such entry     * @return The boolean entry for <code>key</code> or <code>false</code> if no
581     *     exists     *         such entry exists.
582     */     */
583    public boolean getBoolean(Object key)    public boolean getBoolean(Object key)
584    {    {
# Line 674  public class UIDefaults extends Hashtabl Line 674  public class UIDefaults extends Hashtabl
674        return null;        return null;
675      try      try
676        {        {
677          if (loader != null)          if (loader == null)
678            return loader.loadClass (className);                loader = ClassLoader.getSystemClassLoader();
679          return Class.forName (className);          return loader.loadClass (className);
680        }        }
681      catch (Exception e)      catch (Exception e)
682        {        {

Legend:
Removed from v.1.12.2.5  
changed lines
  Added in v.1.12.2.6

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26