/*
* Copyright (c) 2007, persianmobidict.sourceforge.net
* Released under the GNU General Public License
*/
package pmd.gui.border;
/**
*
* @author Hooman Valibeigi
*/
public class Insets {
public int top;
public int left;
public int bottom;
public int right;
public Insets(int top, int left, int bottom, int right) {
this.top = top;
this.left = left;
this.bottom = bottom;
this.right = right;
}
}
|