Java Swing Look and Feel isGTKLookAndFeel()

Here you can find the source of isGTKLookAndFeel()

Description

Determines if current L&F is GTKLookAndFeel

License

Open Source License

Declaration

public static boolean isGTKLookAndFeel() 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import javax.swing.UIManager;

public class Main {
    /**/*from www  .j ava2 s.c o m*/
     * Determines if current L&F is GTKLookAndFeel
     */
    public static boolean isGTKLookAndFeel() {
        // is current L&F some kind of GTKLookAndFeel?
        return UIManager.getLookAndFeel().getID().equals("GTK"); //NOI18N
    }
}

Related

  1. isDarkLAF()
  2. isDarkLnf()
  3. isDarkResultsBackground()
  4. isDefaultLookAndFeel()
  5. isGTKLaF()
  6. isGTKUI()
  7. isInstalledLookAndFeelNamed(String plafName)
  8. isJGoodies()
  9. isJoxyActive()