Java Swing Look and Feel isAquaLookAndFeel()

Here you can find the source of isAquaLookAndFeel()

Description

is Aqua Look And Feel

License

Open Source License

Declaration

public static boolean isAquaLookAndFeel() 

Method Source Code

//package com.java2s;
/*// w  w  w.  j a  va 2s .com
 * Beanfabrics Framework Copyright (C) by Michael Karneim, beanfabrics.org
 * Use is subject to license terms. See license.txt.
 */

import javax.swing.UIManager;

public class Main {
    public static boolean isAquaLookAndFeel() {
        return UIManager.getLookAndFeel().getID().equals("Aqua");
    }
}

Related

  1. initLookAndFeel()
  2. initLookAndFeel(final String className)
  3. initLookAndFeelIntern(final String className)
  4. installLookAndFeel()
  5. isAqua()
  6. isAquaLookAndFeel()
  7. isAquaLookAndFeel()
  8. isDarkLAF()
  9. isDarkLnf()