Get a Hold of Swing Defaults

Get a Hold of Swing Defaults

Swing is one of the best things that happened to Java GUI developers. At the heart of Swing is the javax.swing.UIManager class (com.sun.java.swing.UIManager for Swing 1.03 and below) that keeps track of the current look and feel and its defaults at three levels: user defaults, look and feel defaults, and system defaults. A call to javax.swing.UIManager.getDefaults() will return an instance of the javax.swing.UIDefaults class, which is an extension of java.util.Hashtable containing the defaults for Swing components. With a few lines of code, you can print out all the keys that represent all the settings for Swing components along with their default values:

 public void outputSwingDefs(){        String lineSep = System.getProperty("line.separator");        javax.swing.UIDefaults uid =        javax.swing.UIManager.getDefaults();        java.util.Enumeration uidKeys = uid.keys();        java.io.BufferedWriter buff = null;        java.io.FileWriter fr=null;              try        {                    fr = new java.io.FileWriter("swing_defaults.txt", true);            buff = new java.io.BufferedWriter(fr);                  while (uidKeys.hasMoreElements())            {                Object aKey = uidKeys.nextElement();                Object aValue = uid.get(aKey);                String str = "KEY: "+aKey+", VALUE: "+aValue+lineSep;                buff.write(str, 0, str.length());            }      }       catch(java.io.IOException ioe)      {         //deal with exception      }      finally      {      	try  	{   	    buff.flush();        	    buff.close();        	    fr.close();      	}      	catch(Exception e)      	{         	     //deal with exception      	}      }   }

The output will be a text file called “swing_defaults.txt” in the current directory.In that file, you will see lines like:

 KEY: Tree.textBackground, VALUE:javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]

indicating that tree’s text background has RGB value set of (255, 255, 255), or:

 KEY: ScrollBar.width, VALUE: 17

indicating that ScrollBar has a default width of 17 pixels.

Share the Post:
XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes

ransomware cyber attack

Why Is Ransomware Such a Major Threat?

One of the most significant cyber threats faced by modern organizations is a ransomware attack. Ransomware attacks have grown in both sophistication and frequency over the past few years, forcing

data dictionary

Tools You Need to Make a Data Dictionary

Data dictionaries are crucial for organizations of all sizes that deal with large amounts of data. they are centralized repositories of all the data in organizations, including metadata such as