Package com.iizix

Interface IPrintAdapter

All Known Implementing Classes:
ClientBuilder

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

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

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

    • DEFAULT

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

    • println

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

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

      void println()
      Performs a new line.