9Mar/11Off
Silent Panels in IzPack
In your custom IzPack panel you may want to do some routine silently. In this case you would need just to skip your panel:
@Override
public void panelActivate() {
...
parent.skipPanel();
}
In your custom IzPack panel you may want to do some routine silently. In this case you would need just to skip your panel:
@Override
public void panelActivate() {
...
parent.skipPanel();
}