Java Swing BorderLayout makeBorderPanel(int topMargin, int leftMargin, int bottomMargin, int rightMargin)

Here you can find the source of makeBorderPanel(int topMargin, int leftMargin, int bottomMargin, int rightMargin)

Description

Make a JPanel with a BorderLayout ; set the border to the given margins.

License

BSD License

Declaration

public static JPanel makeBorderPanel(int topMargin, int leftMargin, int bottomMargin, int rightMargin) 

Method Source Code

//package com.java2s;
/*BEGIN_COPYRIGHT_BLOCK*
    /*from w w w.  j  av  a 2  s.  c  o  m*/
PLT Utilities BSD License
    
Copyright (c) 2007-2010 JavaPLT group at Rice University
All rights reserved.
    
Developed by:   Java Programming Languages Team
        Rice University
        http://www.cs.rice.edu/~javaplt/
    
Redistribution and use in source and binary forms, with or without modification, are permitted 
provided that the following conditions are met:
    
- Redistributions of source code must retain the above copyright notice, this list of conditions 
  and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of 
  conditions and the following disclaimer in the documentation and/or other materials provided 
  with the distribution.
- Neither the name of the JavaPLT group, Rice University, nor the names of the library's 
  contributors may be used to endorse or promote products derived from this software without 
  specific prior written permission.
    
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR 
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND 
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND 
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER 
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    
*END_COPYRIGHT_BLOCK*/

import java.awt.*;

import javax.swing.*;

import javax.swing.border.Border;

public class Main {
    /** Make a JPanel with a {@link BorderLayout}. */
    public static JPanel makeBorderPanel() {
        return new JPanel(new BorderLayout());
    }

    /** Make a JPanel with a {@link BorderLayout}; set the border to the given margin on all sides. */
    public static JPanel makeBorderPanel(int margin) {
        return makeBorderPanel(margin, margin, margin, margin);
    }

    /** Make a JPanel with a {@link BorderLayout}; set the border to the given vertical/horizontal margins. */
    public static JPanel makeBorderPanel(int vMargin, int hMargin) {
        return makeBorderPanel(vMargin, hMargin, vMargin, hMargin);
    }

    /** Make a JPanel with a {@link BorderLayout}; set the border to the given margins. */
    public static JPanel makeBorderPanel(int topMargin, int leftMargin, int bottomMargin, int rightMargin) {
        JPanel result = makeBorderPanel();
        result.setBorder(BorderFactory.createEmptyBorder(topMargin, leftMargin, bottomMargin, rightMargin));
        return result;
    }

    /** Set the border of the given components.  Intended to reduce clutter in GUI code. */
    public static void setBorder(Border b, JComponent... components) {
        for (JComponent c : components) {
            c.setBorder(b);
        }
    }
}

Related

  1. createBox(Border border, Component center, Component north)
  2. createPanel(Component comp, boolean setBorder, int borderType)
  3. createPanel(JComponent centerComponent, JComponent placedComponent, String borderLayoutConstraint)
  4. layoutCompactHorizontal(JComponent... list)
  5. layoutCompactVertical(JComponent... list)
  6. makeLateralBorders(JPanel panel, Dimension reference, Border style)
  7. wrapInBorderPanel(final JComponent component)
  8. wrapWithBorder(JComponent aPanel, Border aBorder)