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

com.thoughtworks.gauge.execution.parameters.parsers.base.ParameterParser Maven / Gradle / Ivy

/*----------------------------------------------------------------
 *  Copyright (c) ThoughtWorks, Inc.
 *  Licensed under the Apache License, Version 2.0
 *  See LICENSE.txt in the project root for license information.
 *----------------------------------------------------------------*/
package com.thoughtworks.gauge.execution.parameters.parsers.base;

import com.thoughtworks.gauge.execution.parameters.ParsingException;
import gauge.messages.Spec.Parameter;

public interface ParameterParser {
    boolean canParse(Class parameterType, Parameter parameter);

    Object parse(Class parameterType, Parameter parameter) throws ParsingException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy