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

com.github.noraui.gherkin.ScenarioRegistry Maven / Gradle / Ivy

There is a newer version: 4.4.0
Show newest version
/**
 * 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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy