* @param component component which border should be updated
* @return true if attempt has succeed, false otherwise
*/
public static boolean updateBorder ( final Component component )
{
final BorderMethods borderMethods = LafUtils.getBorderMethods ( component );
if ( borderMethods != null )
{
borderMethods.updateBorder ();
return true;
}
else
{
return false;