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

org.molgenis.dataexplorer.controller.ModuleConfig Maven / Gradle / Ivy

There is a newer version: 8.4.5
Show newest version
package org.molgenis.dataexplorer.controller;

public class ModuleConfig
{
	private final String id;
	private final String label;
	private final String icon;

	public ModuleConfig(String id, String label, String icon)
	{
		if (id == null) throw new IllegalArgumentException("id is null");
		if (label == null) throw new IllegalArgumentException("label is null");
		if (icon == null) throw new IllegalArgumentException("icon is null");
		this.id = id;
		this.label = label;
		this.icon = icon;
	}

	public String getId()
	{
		return id;
	}

	public String getLabel()
	{
		return label;
	}

	public String getIcon()
	{
		return icon;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy