Package

Source Code of PanelBlankCard

import java.awt.Graphics;
import javax.swing.Icon;

@SuppressWarnings("serial")
public class PanelBlankCard extends PanelCell
{
  public PanelBlankCard(ViewInformer v)
  {
    super(null, v);
  }
 
  public void paintComponent(Graphics g)
  {
      super.paintComponent(g);
      Icon image = Card.getBack();
        int x = (getWidth() - image.getIconWidth()) / 2;
        int y = (getHeight() - image.getIconHeight()) / 2;
        image.paintIcon(this, g, x, y);
  }
}
TOP

Related Classes of PanelBlankCard

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.