Here you can find the source of setVerBumpIcon(ImageIcon icon)
public static void setVerBumpIcon(ImageIcon icon)
//package com.java2s; /*/*from w w w. j a v a 2 s .c o m*/ * Copyright (C) 2015 University of Oregon * * You may distribute under the terms of either the GNU General Public * License or the Apache License, as specified in the LICENSE file. * * For more information, see the LICENSE file. */ import javax.swing.*; public class Main { private static ImageIcon verBumpIcon = null; public static void setVerBumpIcon(ImageIcon icon) { verBumpIcon = icon; } }