Home | History | Annotate | Download | only in reporters
      1 package org.testng.reporters;
      2 
      3 import java.io.Writer;
      4 
      5 public interface IBuffer {
      6   IBuffer append(CharSequence string);
      7   void toWriter(Writer fw);
      8 }
      9