blob: f82d8026be40270fed4dfbf2dfc7cd2a9ed03bc3 [file] [log] [blame]
/*
* Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/* @test
@bug 6888156
@summary Tests table column of class Icon.class with Synth LAF
@author Peter Zhelezniakov
@run main Test6888156
*/
import java.awt.Component;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import javax.swing.*;
import javax.swing.table.AbstractTableModel;
import javax.swing.table.TableModel;
public class Test6888156 {
private JTable table;
private Icon ICON = new Icon() {
@Override public int getIconWidth() {
return 24;
}
@Override public int getIconHeight() {
return 24;
}
@Override public void paintIcon(Component c, Graphics g, int w, int h) {
}
};
public Test6888156() {
TableModel model = new AbstractTableModel() {
@Override public int getRowCount() {
return 3;
}
@Override public int getColumnCount() {
return 2;
}
@Override public Object getValueAt(int rowIndex, int columnIndex) {
return (columnIndex == 1 ? ICON : 4);
}
@Override public Class<?> getColumnClass(int columnIndex) {
return (columnIndex == 1 ? Icon.class : int.class);
}
};
table = new JTable(model);
}
public void test(final String laf) throws Exception {
SwingUtilities.invokeAndWait(new Runnable() {
@Override public void run() {
try {
System.out.println(laf);
UIManager.setLookAndFeel(laf);
} catch (Exception e) {
System.err.println(laf + " is unsupported; continuing");
return;
}
SwingUtilities.updateComponentTreeUI(table);
table.setSize(100, 100);
table.paint(
new BufferedImage(100, 100, BufferedImage.OPAQUE).
getGraphics());
}
});
}
public static void main(String[] args) throws Exception {
Test6888156 t = new Test6888156();
t.test("javax.swing.plaf.nimbus.NimbusLookAndFeel");
t.test("com.sun.java.swing.plaf.gtk.GTKLookAndFeel");
for (UIManager.LookAndFeelInfo laf : UIManager.getInstalledLookAndFeels()) {
t.test(laf.getClassName());
}
}
}