コード例 #1
0
ファイル: Resource.java プロジェクト: bozhink/Code-Chunks
 /**
  * Gets an Image.
  *
  * @return the image
  */
 public Image getImage() {
   ImageIcon icon = getIcon();
   if (icon != null) {
     return icon.getImage();
   }
   return null;
 }