javax.swing
Class UIManager.LookAndFeelInfo

java.lang.Object
  extended by javax.swing.UIManager.LookAndFeelInfo
Enclosing class:
UIManager

public static class UIManager.LookAndFeelInfo
extends Object

Represents the basic information about a LookAndFeel (LAF), so that a list of installed LAFs can be presented without actually loading the LAF class(es).


Constructor Summary
UIManager.LookAndFeelInfo(String name, String clazz)
          Creates a new instance.
 
Method Summary
 String getClassName()
          Returns the fully qualified class name for the LookAndFeel.
 String getName()
          Returns the name of the look and feel.
 String toString()
          Returns a String representation of the LookAndFeelInfo object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

UIManager.LookAndFeelInfo

public UIManager.LookAndFeelInfo(String name,
                                 String clazz)
Creates a new instance.

Parameters:
name - the look and feel name.
clazz - the look and feel class name.
Method Detail

getName

public String getName()
Returns the name of the look and feel.

Returns:
The name of the look and feel.

getClassName

public String getClassName()
Returns the fully qualified class name for the LookAndFeel.

Returns:
The fully qualified class name for the LookAndFeel.

toString

public String toString()
Returns a String representation of the LookAndFeelInfo object.

Overrides:
toString in class Object
Returns:
a String representation of the LookAndFeelInfo object
See Also:
Object.getClass(), Object.hashCode(), Class.getName(), Integer.toHexString(int)