Package com.baulsupp.kolja.util.colours

Examples of com.baulsupp.kolja.util.colours.MultiColourString


  protected Line line;

  public OutputRow(Line viewRow) {
    this.line = viewRow;
    text.add(new MultiColourString());
  }
View Full Code Here


    this.line = viewRow;
    text.add(new MultiColourString());
  }

  public void newLine() {
    text.add(new MultiColourString());
  }
View Full Code Here

  public void newLine() {
    text.add(new MultiColourString());
  }

  public void append(ColouredString string) {
    MultiColourString s = text.get(text.size() - 1);
    s.append(string);
  }
View Full Code Here

  public void append(ColourPair columnColour, String string) {
    append(new ColouredString(columnColour, string));
  }

  public void append(MultiColourString string) {
    MultiColourString s = text.get(text.size() - 1);
    s.append(string);
  }
View Full Code Here

TOP

Related Classes of com.baulsupp.kolja.util.colours.MultiColourString

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.