All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.neuronrobotics.sdk.ui.ConnectionImageIconFactory Maven / Gradle / Ivy

There is a newer version: 3.28.0
Show newest version
package com.neuronrobotics.sdk.ui;

import javax.swing.ImageIcon;

// TODO: Auto-generated Javadoc
/**
 * A factory for creating ConnectionImageIcon objects.
 */
public class ConnectionImageIconFactory {
	
	/**
	 * Gets the icon.
	 *
	 * @param path the path
	 * @return the icon
	 */
	public static ImageIcon getIcon(String path){
		try{
			return new ImageIcon(AbstractConnectionPanel.class.getResource(path));
		}catch (Exception e){
			
		}
		return new ImageIcon();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy