private final JButton openButton = new JButton(Language.INSTANCE.localize("common.openfolder"));
public InstanceCard(Instance instance) {
super(instance);
this.instance = instance;
this.image = new ImagePanel(instance.getImage().getImage());
this.splitter.setLeftComponent(this.image);
this.splitter.setRightComponent(this.rightPanel);
this.splitter.setEnabled(false);
this.descArea.setText(instance.getPackDescription());