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

com.wordnik.swagger.jaxrs.config.AbstractScanner Maven / Gradle / Ivy

package com.wordnik.swagger.jaxrs.config;

public abstract class AbstractScanner {
  protected boolean prettyPrint = false;

  public boolean getPrettyPrint() {
    return prettyPrint;
  }

  public void setPrettyPrint(boolean shouldPrettyPrint) {
    this.prettyPrint = shouldPrettyPrint;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy