Here you can find the source of makeEmptyBorderResource(int top, int left, int bottom, int right)
public static javax.swing.border.Border makeEmptyBorderResource(int top, int left, int bottom, int right)
//package com.java2s; //License from project: Open Source License public class Main { public static javax.swing.border.Border makeEmptyBorderResource(int top, int left, int bottom, int right) { return new javax.swing.plaf.BorderUIResource.EmptyBorderUIResource(top, left, bottom, right); }/* w w w . j a va2 s.c o m*/ }