Examples of DotIcon


Examples of org.shiftone.jrat.ui.util.DotIcon

    for (int i = 0; i < colors.length; i++) {
      int r = (int) Math.min(i * magic, 0xff);
      int g = (int) Math.min((100 - i) * magic, 0xff);
      int b = 0;
      colors[i] = new Color(r, g, b);
      icons[i] = new DotIcon(10, colors[i]);
      // LOG.info(i + " = " + Integer.toHexString(r) + " " +
      // Integer.toHexString(g));
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.