Package net.alteiar.beans.map.filter

Examples of net.alteiar.beans.map.filter.MapFilter.draw()


  public void drawFilter(Graphics2D g2, boolean isDm) {
    if (filterId != null) {
      MapFilter filter = CampaignClient.getInstance().getBean(filterId);
      if (filter != null) {
        // TODO FIXME remove 1.0
        filter.draw(g2, 1.0, isDm);
      } else {
        Graphics2D g = (Graphics2D) g2.create();
        g.setColor(Color.BLACK);
        if (isDm) {
          g.setComposite(AlphaComposite.getInstance(
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.