public static void showSprite(Component parent, Sprite sprite) {
if (sprite == null) {
return;
}
SpriteView view = new SpriteView(sprite);
JOptionPane.showOptionDialog(parent, view, sprite.toString(),
JOptionPane.DEFAULT_OPTION, JOptionPane.PLAIN_MESSAGE, null,
null, null);
}