Here you can find the source of toColor(boolean val)
public static int toColor(boolean val)
//package com.java2s; //License from project: Open Source License public class Main { public static int toColor(boolean val) { return (val) ? 0x00ff00 : 0xff0000; }/* ww w.ja v a 2 s .c o m*/ }