Removed the packages problem

android-scanner
Vladimir Eliezer Tokarev 2016-10-01 11:07:43 +03:00
parent 7cda19247e
commit 51ea368c01
2 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,4 @@
package main.select_candidate_by_picture;
package meerkat.voting.gui.select_candidate_by_picture;
import javafx.fxml.FXML;
import javafx.geometry.Insets;

View File

@ -5,7 +5,6 @@ import javafx.scene.Parent;
import javafx.stage.Stage;
import meerkat.voting.gui.TwoWayNode;
import java.io.IOException;
/**
* Created by Vladimir Eliezer Tokarev on 8/27/2016.
* SelectCandidateByPictureLoader creates the pannel which gives the option to choose by picture
@ -30,7 +29,7 @@ public class SelectCandidateByPictureLoader {
*/
public TwoWayNode GetSelectCandidateByPicture() throws IOException {
Parent selectByPicture = fxmlLoader.load();
SelectCandidateByPictureController controller = fxmlLoader.getController();
meerkat.voting.gui.select_candidate_by_picture.SelectCandidateByPictureController controller = fxmlLoader.getController();
// set the controller to be functional TwoWayNode
controller.SetParent(selectByPicture);