io.cucumber.plugin.event.DocStringArgument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-plugin Show documentation
Show all versions of cucumber-plugin Show documentation
Plugin interface for Cucumber-JVM
The newest version!
package io.cucumber.plugin.event;
import org.apiguardian.api.API;
/**
* Represents a Gherkin doc string argument.
*/
@API(status = API.Status.STABLE)
public interface DocStringArgument extends StepArgument {
String getContent();
/**
* @deprecated use {@link #getMediaType()} instead.
*/
@Deprecated
String getContentType();
String getMediaType();
int getLine();
}