Java JPanel Child addWithPadding(JPanel parentPanel, JPanel panelToBeAdded)

Here you can find the source of addWithPadding(JPanel parentPanel, JPanel panelToBeAdded)

Description

add With Padding

License

Open Source License

Declaration

public static void addWithPadding(JPanel parentPanel, JPanel panelToBeAdded) 

Method Source Code

//package com.java2s;
/* The MIT License (MIT)
    /*from  www  .  jav  a  2 s  .c o m*/
Copyright (c) 2012 Jerome Wagener
    
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
    
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
    
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.*/

import javax.swing.JPanel;

import javax.swing.border.EmptyBorder;

public class Main {
    public static void addWithPadding(JPanel parentPanel, JPanel panelToBeAdded) {
        JPanel spaceContainer = new JPanel();
        spaceContainer.setBorder(new EmptyBorder(3, 3, 3, 3));
        spaceContainer.add(panelToBeAdded);

        parentPanel.add(spaceContainer);
    }
}

Related

  1. addToGridBag(Component comp, JPanel panel, int gridx, int gridy, int width, int height, int anchor)
  2. addToGridBag(final JPanel panel, final Component component, final int x, final int y)
  3. addTwoCheckBoxes(JPanel panel, JCheckBox first, boolean firstChecked, JCheckBox second, boolean secondChecked)
  4. addUIComponent(JPanel jp, JComponent jc, int loc, int type, int[] decart, Insets insets)
  5. addWidth(JPanel panel, int width)
  6. fillPanel(final JPanel panel, final GridBagConstraints gbc)
  7. fillPanel(JPanel panel, Component... components)
  8. getOutermostContainer(JPanel container)
  9. packPanel(JPanel p, int width)