Interface PrintWriterProvider

All Known Implementing Classes:
PrintWriterProviderImpl

public interface PrintWriterProvider
PrintWriterProvider is an abstraction layer that supports the export of PrintWriter across bundle boundaries.

  • Method Summary

    Modifier and Type
    Method
    Description
    build(Class<T> klass)
    Build a new instance of a PrintWriter that will not be shared with other callers.
  • Method Details

    • build

      <T> PrintWriter build(Class<T> klass)
      Build a new instance of a PrintWriter that will not be shared with other callers.
      Parameters:
      klass - the Class of object this PrintWriter can write.
      Returns:
      PrintWriter.