com.processpuzzle.fitnesse.print.plugin.FitToPdfProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fit-print-plugin Show documentation
Show all versions of fit-print-plugin Show documentation
FitNesse Plugin to print wiki content into PDF.
The newest version!
package com.processpuzzle.fitnesse.print.plugin;
public enum FitToPdfProperties {
PRINT_CHILD_PAGES( "printChildPages" ),
PRING_ROOT_PAGE( "printRootPage" );
FitToPdfProperties( String propertyName ){
this.propertyName = propertyName;
}
private final String propertyName;
// @formatter:off
public String getPropertyName(){ return propertyName; }
// @formatter:on
}