jdk/test/javax/swing/JInternalFrame/Test6802868.java
author mcherkas
Tue, 30 Apr 2013 13:24:14 +0400
changeset 17149 adce5338e9b5
parent 5506 202f599c92aa
child 40128 e635645d2a8a
permissions -rw-r--r--
8012004: JInternalFrame not being finalized after closing Reviewed-by: alexsch, alexp

/*
 * Copyright (c) 2009, 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 6802868
 * @summary JInternalFrame is not maximized when maximized parent frame
 * @author Alexander Potochkin
 * @library ..
 */

import java.awt.Dimension;
import java.awt.Point;
import java.beans.PropertyVetoException;
import javax.swing.JDesktopPane;
import javax.swing.JFrame;
import javax.swing.JInternalFrame;

public class Test6802868 {

    public static void main(String[] args) throws Throwable {
        SwingTest.start(Test6802868.class);
    }

    private final JFrame frame;
    private final JInternalFrame internal;
    private Dimension size;
    private Point location;

    public Test6802868(JFrame frame) {
        JDesktopPane desktop = new JDesktopPane();

        this.frame = frame;
        this.frame.add(desktop);

        this.internal = new JInternalFrame(getClass().getName(), true, true, true, true);
        this.internal.setVisible(true);

        desktop.add(this.internal);
    }

    public void firstAction() throws PropertyVetoException {
        this.internal.setMaximum(true);
    }

    public void firstTest() {
        this.size = this.internal.getSize();
        resizeFrame();
    }

    public void firstValidation() {
        if (this.internal.getSize().equals(this.size)) {
            throw new Error("InternalFrame hasn't changed its size");
        }
    }

    public void secondAction() throws PropertyVetoException {
        this.internal.setIcon(true);
    }

    public void secondTest() {
        this.location = this.internal.getDesktopIcon().getLocation();
        resizeFrame();
    }

    public void secondValidation() {
        if (this.internal.getDesktopIcon().getLocation().equals(this.location)) {
            throw new Error("JDesktopIcon hasn't moved");
        }
    }

    private void resizeFrame() {
        Dimension size = this.frame.getSize();
        size.width += 10;
        size.height += 10;
        this.frame.setSize(size);
    }
}