Package timeflow.util

Examples of timeflow.util.Pad


  JComponent controls;
 
  public DescriptionView(TFModel model) {
    super(model);
    setLayout(new BorderLayout());
    JPanel left=new Pad(5,5);
    left.setBackground(Color.white);
    add(left, BorderLayout.WEST);
    JPanel right=new Pad(5,5);
    right.setBackground(Color.white);
    add(right, BorderLayout.EAST);
    JPanel top=new JPanel();
    add(top, BorderLayout.NORTH);
    top.setLayout(new FlowLayout(FlowLayout.LEFT));
    top.add(new JLabel("Notes & Comments on This Data:"));
View Full Code Here


    // left tab area, with vertical gray divider.
    JPanel leftHolder=new JPanel();
    getContentPane().add(leftHolder, BorderLayout.WEST);
   
    leftHolder.setLayout(new BorderLayout());
    JPanel pad=new Pad(3,3);
    pad.setBackground(Color.gray);
    leftHolder.add(pad, BorderLayout.EAST);
   
    leftPanel=new LinkTabPane();//JTabbedPane();
    leftHolder.add(leftPanel, BorderLayout.CENTER);
   
View Full Code Here

TOP

Related Classes of timeflow.util.Pad

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.