[ Pobierz całość w formacie PDF ]
.Display page for FlowLayout1 at www.BruceEckel.comFlowLayout1.javaNo Java 2 support for APPLET!!//: c13:FlowLayout1.java// Demonstrates FlowLayout.// <applet code=FlowLayout1// width=300 height=250> </applet>import javax.swing.*;import java.awt.*;import com.bruceeckel.swing.*;public class FlowLayout1 extends JApplet {public void init() {Container cp = getContentPane();cp.setLayout(new FlowLayout());for(int i = 0; i < 20; i++)cp.add(new JButton("Button " + i));}public static void main(String[] args) {Console.run(new FlowLayout1(), 300, 250);}} ///:~
[ Pobierz całość w formacie PDF ]