Package javax.swing.plaf.metal

Provides a cross-platform look and feel known as "Metal".

See: Description

Package javax.swing.plaf.metal Description:

Provides a cross-platform look and feel known as "Metal". To install this look and feel, add the following code (or something similar) near the start of your application:

try
  {
  UIManager.setLookAndFeel(new MetalLookAndFeel());
  }
catch (UnsupportedLookAndFeelException e)
  {
  e.printStackTrace();
  }