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

com.processpuzzle.fitnesse.print.plugin.FitToPdfProperties Maven / Gradle / Ivy

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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy