Input:
import [Link].*;
import [Link].*;
public class AJPPR62 extends JFrame
{
AJPPR62()
{
FlowLayout f = new FlowLayout();
setLayout(f);
JButton b1 = new JButton("This button is inside a
Scrollpane");
JScrollPane s = new
JScrollPane(b1,ScrollPaneConstants.VERTICAL_SCROLLBAR
_ALWAYS,ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWA
YS);
add(s);
}
public static void main(String args[])
{ AJPPR62 a = new AJPPR62();
[Link](500,500);
[Link](true);
}
}
Output: