FlowLayout.RIGHT : FlowLayout : java.awt : Java by API examples (example source code) Organized by topic

Java by API
C++
PHP


Java by API  »  java.awt   » [  FlowLayout  ]   
 



FlowLayout.RIGHT

/*
 * Output:
 *  
 */

import java.awt.FlowLayout;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;

public class MainClass extends JPanel {

  public MainClass() {
    super(new FlowLayout(FlowLayout.RIGHT, 103));
    add(new JButton("w w w.j a v a 2 s . c o m"));
    add(new JButton("w w w.j a v a 2 s . com"));
    add(new JButton("w w w.java2s.com"));
    add(new JButton("www.j ava 2 s . c o m"));
  }

  public static void main(String[] args) {
    JFrame frame = new JFrame();
    frame.getContentPane().add(new MainClass());

    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(200200);
    frame.setVisible(true);
  }
}
           
       
Related examples in the same category
1.  FlowLayout.LEFT
2.  new FlowLayout(int align, int hgap, int vgap)
























Home| Contact Us
Copyright 2003 - 07 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.