Package com.baulsupp.kolja.util.colours

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


    return result;
  }

  public static ColourPair parseColours(Element element) {
    Colour foreground = Colour.valueOf(element.getAttribute("foreground"));
    Colour background = Colour.valueOf(element.getAttribute("background"));

    return new ColourPair(foreground, background);
  }
View Full Code Here

TOP

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

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.