test.BasicLookAndFeelImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Quaqua Show documentation
Show all versions of Quaqua Show documentation
A Mavenisation of the Quaqua Mac OSX Swing Look and Feel (Java library)
Quaqua Look and Feel (C) 2003-2010, Werner Randelshofer.
Mavenisation by Matt Gumbley, DevZendo.org - for problems with
Mavenisation, see Matt; for issues with Quaqua, see the Quaqua home page.
For full license details, see http://randelshofer.ch/quaqua/license.html
The newest version!
/*
* @(#)BasicLookAndFeelImpl.java 1.0 2008-11-17
*
* Copyright (c) 2008 Werner Randelshofer, Immensee, Switzerland.
* All rights reserved.
*
* The copyright of this software is owned by Werner Randelshofer.
* You may not use, copy or modify this software, except in
* accordance with the license agreement you entered into with
* Werner Randelshofer. For details see accompanying license terms.
*/
package test;
import javax.swing.plaf.basic.BasicLookAndFeel;
/**
* BasicLookAndFeelImpl.
*
* Note: This class must be Java 1.4 compatible.
*
* @author Werner Randelshofer, Hausmatt 10, CH-6405 Immensee
* @version 1.0 2008-11-17 Created.
*/
public class BasicLookAndFeelImpl extends BasicLookAndFeel {
//@Override
public String getName() {
return "Basic";
}
//@Override
public String getID() {
return "Basic";
}
//@Override
public String getDescription() {
return "A basic look and feel";
}
//@Override
public boolean isNativeLookAndFeel() {
return false;
}
//@Override
public boolean isSupportedLookAndFeel() {
return true;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy