Class AbstractJGivenReportImpl
- java.lang.Object
-
- org.gradle.api.reporting.internal.SimpleReport
-
- org.gradle.api.reporting.internal.TaskGeneratedReport
-
- org.gradle.api.reporting.internal.TaskGeneratedSingleDirectoryReport
-
- com.tngtech.jgiven.gradle.internal.AbstractJGivenReportImpl
-
- All Implemented Interfaces:
JGivenReport,org.gradle.api.reporting.ConfigurableReport,org.gradle.api.reporting.DirectoryReport,org.gradle.api.reporting.Report,org.gradle.util.Configurable<org.gradle.api.reporting.Report>
- Direct Known Subclasses:
JGivenAsciiDocReportImpl,JGivenHtmlReportImpl,JGivenTextReportImpl
public abstract class AbstractJGivenReportImpl extends org.gradle.api.reporting.internal.TaskGeneratedSingleDirectoryReport implements JGivenReport
-
-
Constructor Summary
Constructors Constructor Description AbstractJGivenReportImpl(java.lang.String name, org.gradle.api.Task task, java.lang.String relativeEntryPath)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description com.tngtech.jgiven.report.AbstractReportGeneratorcreateGenerator()java.io.FilegetCustomCssFile()java.io.FilegetCustomJsFile()abstract com.tngtech.jgiven.report.ReportGenerator.FormatgetFormat()java.lang.StringgetTitle()booleanisExcludeEmptyScenarios()booleanisThumbnailsAreShown()voidsetCustomCssFile(java.io.File customCssFile)voidsetCustomJsFile(java.io.File customJsFile)voidsetExcludeEmptyScenarios(boolean excludeEmptyScenarios)voidsetThumbnailsAreShown(boolean thumbnailsAreShown)voidsetTitle(java.lang.String title)-
Methods inherited from class org.gradle.api.reporting.internal.TaskGeneratedSingleDirectoryReport
getEntryPoint, getProjectLayout
-
Methods inherited from class org.gradle.api.reporting.internal.SimpleReport
configure, getDisplayName, getName, getOutputLocation, getOutputType, setDestination, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
Method Detail
-
createGenerator
public com.tngtech.jgiven.report.AbstractReportGenerator createGenerator()
- Specified by:
createGeneratorin interfaceJGivenReport
-
getFormat
@Internal public abstract com.tngtech.jgiven.report.ReportGenerator.Format getFormat()
-
getCustomCssFile
public java.io.File getCustomCssFile()
- Specified by:
getCustomCssFilein interfaceJGivenReport
-
setCustomCssFile
public void setCustomCssFile(java.io.File customCssFile)
- Specified by:
setCustomCssFilein interfaceJGivenReport
-
getCustomJsFile
public java.io.File getCustomJsFile()
- Specified by:
getCustomJsFilein interfaceJGivenReport
-
setCustomJsFile
public void setCustomJsFile(java.io.File customJsFile)
- Specified by:
setCustomJsFilein interfaceJGivenReport
-
getTitle
public java.lang.String getTitle()
- Specified by:
getTitlein interfaceJGivenReport
-
setTitle
public void setTitle(java.lang.String title)
- Specified by:
setTitlein interfaceJGivenReport
-
isExcludeEmptyScenarios
public boolean isExcludeEmptyScenarios()
- Specified by:
isExcludeEmptyScenariosin interfaceJGivenReport
-
setExcludeEmptyScenarios
public void setExcludeEmptyScenarios(boolean excludeEmptyScenarios)
- Specified by:
setExcludeEmptyScenariosin interfaceJGivenReport
-
isThumbnailsAreShown
public boolean isThumbnailsAreShown()
- Specified by:
isThumbnailsAreShownin interfaceJGivenReport
-
setThumbnailsAreShown
public void setThumbnailsAreShown(boolean thumbnailsAreShown)
- Specified by:
setThumbnailsAreShownin interfaceJGivenReport
-
-