Java Swing Empty Border addMarginAndBorder(JComponent component, int margin)

Here you can find the source of addMarginAndBorder(JComponent component, int margin)

Description

Add a margin and border to a given component

License

Open Source License

Parameter

Parameter Description
component Component to add the margin to
margin Margin size

Return

Created border

Declaration

public static Border addMarginAndBorder(JComponent component, int margin) 

Method Source Code

//package com.java2s;
/*//w w w  . j  a v  a2 s .c o m
 * Copyright 2007-2013 VTT Biotechnology
 * This file is part of Guineu.
 *
 * Guineu is free software; you can redistribute it and/or modify it under the
 * terms of the GNU General Public License as published by the Free Software
 * Foundation; either version 2 of the License, or (at your option) any later
 * version.
 *
 * Guineu is distributed in the hope that it will be useful, but WITHOUT ANY
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * Guineu; if not, write to the Free Software Foundation, Inc., 51 Franklin St,
 * Fifth Floor, Boston, MA 02110-1301 USA
 */

import javax.swing.BorderFactory;

import javax.swing.JComponent;

import javax.swing.border.Border;
import javax.swing.border.EtchedBorder;

public class Main {
    /**
     * Add a margin and border to a given component
     *
     * @param component Component to add the margin to
     * @param margin Margin size
     * @return Created border
     */
    public static Border addMarginAndBorder(JComponent component, int margin) {
        Border marginBorder = BorderFactory.createEmptyBorder(margin, margin, margin, margin);
        Border etchedBorder = BorderFactory.createEtchedBorder(EtchedBorder.RAISED);
        Border compoundBorder = BorderFactory.createCompoundBorder(etchedBorder, marginBorder);
        component.setBorder(compoundBorder);
        return compoundBorder;
    }
}

Related

  1. addBorder(JComponent target, Border add)
  2. addBorderSpaces(JComponent com)
  3. addEmptyBorder(JComponent c, int i)
  4. blankBorder(int top, int left, int bottom, int right)
  5. borderlessScrollPane(final Component component)
  6. buildInfoPanelEmptyBorderScroll(final JComponent content)
  7. buildPanelEmptyBorder(final JComponent content, final int top, final int left, final int bottom, final int right)