Package com.iizix

Interface IPrintAdapter

All Known Implementing Classes:
ClientBuilder

public interface IPrintAdapter
Very small print output redirector.
Author:
Christopher Mindus
  • Field Summary Link icon

    Fields
    Modifier and Type
    Field
    Description
    static final IPrintAdapter
    The default print adapter that outputs to System.out.
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    void
    Prints without new line.
    void
    Performs a new line.
    void
    Prints without new line.
  • Field Details Link icon

    • DEFAULT Link icon

      static final IPrintAdapter DEFAULT
      The default print adapter that outputs to System.out.
  • Method Details Link icon

    • println Link icon

      void println(String s)
      Prints without new line.
      Parameters:
      s - The String.
    • print Link icon

      void print(String s)
      Prints without new line.
      Parameters:
      s - The String.
    • println Link icon

      void println()
      Performs a new line.