8328553: Get rid of JApplet in test/jdk/sanity/client/lib/SwingSet2/src/DemoModule.java
Reviewed-by: honkar, prr
This commit is contained in:
parent
6169613d9f
commit
7d1bbff076
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2018, 2024, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -31,7 +31,6 @@ import java.net.URL;
|
|||||||
import javax.swing.BoxLayout;
|
import javax.swing.BoxLayout;
|
||||||
import javax.swing.Icon;
|
import javax.swing.Icon;
|
||||||
import javax.swing.ImageIcon;
|
import javax.swing.ImageIcon;
|
||||||
import javax.swing.JApplet;
|
|
||||||
import javax.swing.JFrame;
|
import javax.swing.JFrame;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
import javax.swing.UIManager;
|
import javax.swing.UIManager;
|
||||||
@ -42,10 +41,8 @@ import javax.swing.border.SoftBevelBorder;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* A generic SwingSet2 demo module
|
* A generic SwingSet2 demo module
|
||||||
*
|
|
||||||
* @author Jeff Dinkins
|
|
||||||
*/
|
*/
|
||||||
public class DemoModule extends JApplet {
|
public class DemoModule extends JPanel {
|
||||||
|
|
||||||
// The preferred size of the demo
|
// The preferred size of the demo
|
||||||
private int PREFERRED_WIDTH = 680;
|
private int PREFERRED_WIDTH = 680;
|
||||||
@ -214,10 +211,6 @@ public class DemoModule extends JApplet {
|
|||||||
demo.mainImpl();
|
demo.mainImpl();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void init() {
|
|
||||||
getContentPane().setLayout(new BorderLayout());
|
|
||||||
getContentPane().add(getDemoPanel(), BorderLayout.CENTER);
|
|
||||||
}
|
|
||||||
|
|
||||||
void updateDragEnabled(boolean dragEnabled) {}
|
void updateDragEnabled(boolean dragEnabled) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user