You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
582 B
24 lines
582 B
package seng202.group9.GUI;
|
|
|
|
import seng202.group9.Controller.SceneCode;
|
|
import seng202.group9.Controller.Session;
|
|
|
|
/**
|
|
* Created by michael on 2/10/2016.
|
|
*/
|
|
public class PieChartErrorController extends Controller {
|
|
private Session currentSession;
|
|
|
|
public void load(){
|
|
currentSession = this.getParent().getSession();
|
|
}
|
|
|
|
public void ignoredWarning() {
|
|
currentSession.setForceGraph(true);
|
|
replaceSceneContent(SceneCode.AIRPORT_ANALYSER);
|
|
}
|
|
public void backToSafety(){
|
|
replaceSceneContent(SceneCode.PIE_GRAPH_CHOOSER);
|
|
}
|
|
}
|