com.github.noraui.gherkin.ScenarioRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of noraui Show documentation
Show all versions of noraui Show documentation
Non-Regression Automation for User Interfaces
/**
* NoraUi is licensed under the license GNU AFFERO GENERAL PUBLIC LICENSE
*
* @author Nicolas HALLOUIN
* @author Stéphane GRILLON
*/
package com.github.noraui.gherkin;
import java.util.HashMap;
@SuppressWarnings("serial")
public class ScenarioRegistry extends HashMap {
/**
* {@inheritDoc}
*/
@Override
public String get(Object key) {
if (containsKey(key)) {
return super.get(key);
}
return null;
}
}