Changed the project structure

android-scanner
VladimirEliTokarev 2016-10-05 12:28:19 +03:00
parent f535847ee5
commit af2622b05c
48 changed files with 89 additions and 89 deletions

View File

@ -1,4 +1,4 @@
package meerkat.voting.gui; package meerkat.voting.gui.configuration;
import meerkat.protobuf.BallotQuestionUIElementOuterClass; import meerkat.protobuf.BallotQuestionUIElementOuterClass;
/** /**

View File

@ -1,4 +1,4 @@
package meerkat.voting.gui; package meerkat.voting.gui.configuration;
import com.google.protobuf.ByteString; import com.google.protobuf.ByteString;
import meerkat.protobuf.BallotQuestionUIElementOuterClass; import meerkat.protobuf.BallotQuestionUIElementOuterClass;

View File

@ -1,13 +1,14 @@
package meerkat.voting.gui; package meerkat.voting.gui.managment;
import javafx.stage.Stage; import javafx.stage.Stage;
import meerkat.voting.gui.ballot_summary.BallotSummaryLoader; import meerkat.voting.gui.panels.ballot_summary.BallotSummaryLoader;
import meerkat.voting.gui.cast_or_audit.CastOrAuditLoader; import meerkat.voting.gui.panels.cast_or_audit.CastOrAuditLoader;
import meerkat.voting.gui.select_candidate_by_picture.SelectCandidateByPictureLoader; import meerkat.voting.gui.panels.select_candidate_by_picture.SelectCandidateByPictureLoader;
import meerkat.voting.gui.select_candidate_name.SelectCandidateNameLoader; import meerkat.voting.gui.panels.select_candidate_name.SelectCandidateNameLoader;
import meerkat.voting.gui.straight_channel_section.StraightChannelSectionLoader; import meerkat.voting.gui.panels.straight_channel_section.StraightChannelSectionLoader;
import meerkat.voting.gui.vote_have_been_cast.VoteHaveBeenCastLoader; import meerkat.voting.gui.panels.vote_have_been_cast.VoteHaveBeenCastLoader;
import meerkat.voting.gui.welcome_splash.WelcomeSplashLoader; import meerkat.voting.gui.panels.welcome_splash.WelcomeSplashLoader;
import meerkat.voting.gui.configuration.VotingBoothConfiguration;
import java.io.IOException; import java.io.IOException;
import java.util.HashMap; import java.util.HashMap;

View File

@ -1,7 +1,9 @@
package meerkat.voting.gui; package meerkat.voting.gui.managment;
import javafx.application.Application; import javafx.application.Application;
import javafx.stage.Stage; import javafx.stage.Stage;
import meerkat.voting.gui.configuration.VotingBoothConfiguration;
import meerkat.voting.gui.configuration.VotingBoothConfigurationCreator;
import org.json.JSONException; import org.json.JSONException;
import java.io.IOException; import java.io.IOException;

View File

@ -1,8 +1,9 @@
package meerkat.voting.gui; package meerkat.voting.gui.managment;
import javafx.scene.Parent; import javafx.scene.Parent;
import javafx.scene.Scene; import javafx.scene.Scene;
import javafx.stage.Stage; import javafx.stage.Stage;
import meerkat.voting.gui.configuration.VotingBoothConfiguration;
/** /**
* Created by Vladimir Eliezer Tokarev on 8/27/2016. * Created by Vladimir Eliezer Tokarev on 8/27/2016.

View File

@ -1,11 +1,11 @@
package meerkat.voting.gui; package meerkat.voting.gui.managment;
import com.google.common.util.concurrent.FutureCallback; import com.google.common.util.concurrent.FutureCallback;
import javafx.application.Application; import javafx.application.Application;
import javafx.stage.Stage; import javafx.stage.Stage;
import meerkat.protobuf.Voting; import meerkat.protobuf.Voting;
import meerkat.voting.VotingBooth; import meerkat.voting.gui.configuration.VotingBoothConfiguration;
import meerkat.voting.ui.VotingBoothUI; import meerkat.voting.gui.ui.VotingBoothUI;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import java.io.IOException; import java.io.IOException;

View File

@ -1,8 +1,8 @@
package meerkat.voting.gui.ballot_summary; package meerkat.voting.gui.panels.ballot_summary;
import javafx.fxml.FXML; import javafx.fxml.FXML;
import javafx.scene.input.MouseEvent; import javafx.scene.input.MouseEvent;
import meerkat.voting.gui.TwoWayNode; import meerkat.voting.gui.managment.TwoWayNode;
/** /**
* Created by Vladimir Eliezer Tokarev on 8/27/2016. * Created by Vladimir Eliezer Tokarev on 8/27/2016.

View File

@ -1,10 +1,10 @@
package meerkat.voting.gui.ballot_summary; package meerkat.voting.gui.panels.ballot_summary;
import javafx.fxml.FXMLLoader; import javafx.fxml.FXMLLoader;
import javafx.scene.Parent; import javafx.scene.Parent;
import javafx.stage.Stage; import javafx.stage.Stage;
import meerkat.voting.gui.TwoWayNode; import meerkat.voting.gui.managment.TwoWayNode;
import meerkat.voting.gui.VotingBoothConfiguration; import meerkat.voting.gui.configuration.VotingBoothConfiguration;
import java.io.IOException; import java.io.IOException;

View File

@ -1,8 +1,8 @@
package meerkat.voting.gui.cast_or_audit; package meerkat.voting.gui.panels.cast_or_audit;
import javafx.fxml.FXML; import javafx.fxml.FXML;
import javafx.scene.input.MouseEvent; import javafx.scene.input.MouseEvent;
import meerkat.voting.gui.TwoWayNode; import meerkat.voting.gui.managment.TwoWayNode;
/** /**
* Created by Vladimir Eliezer Tokarev on 8/27/2016. * Created by Vladimir Eliezer Tokarev on 8/27/2016.

View File

@ -1,10 +1,10 @@
package meerkat.voting.gui.cast_or_audit; package meerkat.voting.gui.panels.cast_or_audit;
import javafx.fxml.FXMLLoader; import javafx.fxml.FXMLLoader;
import javafx.scene.Parent; import javafx.scene.Parent;
import javafx.stage.Stage; import javafx.stage.Stage;
import meerkat.voting.gui.TwoWayNode; import meerkat.voting.gui.managment.TwoWayNode;
import meerkat.voting.gui.VotingBoothConfiguration; import meerkat.voting.gui.configuration.VotingBoothConfiguration;
import java.io.IOException; import java.io.IOException;

View File

@ -1,4 +1,4 @@
package meerkat.voting.gui.select_candidate_by_picture; package meerkat.voting.gui.panels.select_candidate_by_picture;
import com.google.protobuf.ByteString; import com.google.protobuf.ByteString;
import javafx.embed.swing.SwingFXUtils; import javafx.embed.swing.SwingFXUtils;

View File

@ -1,8 +1,8 @@
package meerkat.voting.gui.select_candidate_by_picture; package meerkat.voting.gui.panels.select_candidate_by_picture;
import javafx.fxml.FXML; import javafx.fxml.FXML;
import javafx.scene.input.MouseEvent; import javafx.scene.input.MouseEvent;
import meerkat.voting.gui.TwoWayNode; import meerkat.voting.gui.managment.TwoWayNode;
/** /**
* Created by Vladimir Eliezer Tokarev on 8/27/2016. * Created by Vladimir Eliezer Tokarev on 8/27/2016.

View File

@ -1,10 +1,10 @@
package meerkat.voting.gui.select_candidate_by_picture; package meerkat.voting.gui.panels.select_candidate_by_picture;
import javafx.fxml.FXMLLoader; import javafx.fxml.FXMLLoader;
import javafx.scene.Parent; import javafx.scene.Parent;
import javafx.stage.Stage; import javafx.stage.Stage;
import meerkat.voting.gui.TwoWayNode; import meerkat.voting.gui.managment.TwoWayNode;
import meerkat.voting.gui.VotingBoothConfiguration; import meerkat.voting.gui.configuration.VotingBoothConfiguration;
import java.io.IOException; import java.io.IOException;
/** /**
@ -33,7 +33,7 @@ public class SelectCandidateByPictureLoader {
*/ */
public TwoWayNode GetSelectCandidateByPicture() throws IOException { public TwoWayNode GetSelectCandidateByPicture() throws IOException {
Parent selectByPicture = fxmlLoader.load(); Parent selectByPicture = fxmlLoader.load();
meerkat.voting.gui.select_candidate_by_picture.SelectCandidateByPictureController controller = fxmlLoader.getController(); meerkat.voting.gui.panels.select_candidate_by_picture.SelectCandidateByPictureController controller = fxmlLoader.getController();
// set the controller to be functional TwoWayNode // set the controller to be functional TwoWayNode
controller.SetCurrentScene(selectByPicture); controller.SetCurrentScene(selectByPicture);

View File

@ -1,8 +1,8 @@
package meerkat.voting.gui.select_candidate_name; package meerkat.voting.gui.panels.select_candidate_name;
import javafx.fxml.FXML; import javafx.fxml.FXML;
import javafx.scene.input.MouseEvent; import javafx.scene.input.MouseEvent;
import meerkat.voting.gui.TwoWayNode; import meerkat.voting.gui.managment.TwoWayNode;
/** /**
* Created by Vladimir Eliezer Tokarev on 8/27/2016. * Created by Vladimir Eliezer Tokarev on 8/27/2016.

View File

@ -1,10 +1,10 @@
package meerkat.voting.gui.select_candidate_name; package meerkat.voting.gui.panels.select_candidate_name;
import javafx.fxml.FXMLLoader; import javafx.fxml.FXMLLoader;
import javafx.scene.Parent; import javafx.scene.Parent;
import javafx.stage.Stage; import javafx.stage.Stage;
import meerkat.voting.gui.TwoWayNode; import meerkat.voting.gui.managment.TwoWayNode;
import meerkat.voting.gui.VotingBoothConfiguration; import meerkat.voting.gui.configuration.VotingBoothConfiguration;
import java.io.IOException; import java.io.IOException;

View File

@ -1,4 +1,4 @@
package meerkat.voting.gui.select_candidate_name; package meerkat.voting.gui.panels.select_candidate_name;
import com.google.protobuf.ByteString; import com.google.protobuf.ByteString;
import javafx.event.Event; import javafx.event.Event;

View File

@ -1,10 +1,10 @@
package meerkat.voting.gui.straight_channel_section; package meerkat.voting.gui.panels.straight_channel_section;
import javafx.fxml.FXML; import javafx.fxml.FXML;
import javafx.scene.control.Button; import javafx.scene.control.Button;
import javafx.scene.control.TextField; import javafx.scene.control.TextField;
import javafx.scene.input.MouseEvent; import javafx.scene.input.MouseEvent;
import meerkat.voting.gui.TwoWayNode; import meerkat.voting.gui.managment.TwoWayNode;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;

View File

@ -1,10 +1,10 @@
package meerkat.voting.gui.straight_channel_section; package meerkat.voting.gui.panels.straight_channel_section;
import javafx.fxml.FXMLLoader; import javafx.fxml.FXMLLoader;
import javafx.scene.Parent; import javafx.scene.Parent;
import javafx.stage.Stage; import javafx.stage.Stage;
import meerkat.voting.gui.TwoWayNode; import meerkat.voting.gui.managment.TwoWayNode;
import meerkat.voting.gui.VotingBoothConfiguration; import meerkat.voting.gui.configuration.VotingBoothConfiguration;
import java.io.IOException; import java.io.IOException;

View File

@ -1,6 +1,6 @@
package meerkat.voting.gui.vote_have_been_cast; package meerkat.voting.gui.panels.vote_have_been_cast;
import meerkat.voting.gui.TwoWayNode; import meerkat.voting.gui.managment.TwoWayNode;
/** /**
* Created by Vladimir Eliezer Tokarev on 8/27/2016. * Created by Vladimir Eliezer Tokarev on 8/27/2016.

View File

@ -1,11 +1,10 @@
package meerkat.voting.gui.vote_have_been_cast; package meerkat.voting.gui.panels.vote_have_been_cast;
import javafx.fxml.FXMLLoader; import javafx.fxml.FXMLLoader;
import javafx.scene.Parent; import javafx.scene.Parent;
import javafx.stage.Stage; import javafx.stage.Stage;
import meerkat.voting.gui.TwoWayNode; import meerkat.voting.gui.managment.TwoWayNode;
import meerkat.voting.gui.VotingBoothConfiguration; import meerkat.voting.gui.configuration.VotingBoothConfiguration;
import meerkat.voting.ui.VotingBoothUI;
import java.io.IOException; import java.io.IOException;

View File

@ -1,8 +1,8 @@
package meerkat.voting.gui.welcome_splash; package meerkat.voting.gui.panels.welcome_splash;
import javafx.fxml.FXML; import javafx.fxml.FXML;
import javafx.scene.input.MouseEvent; import javafx.scene.input.MouseEvent;
import meerkat.voting.gui.TwoWayNode; import meerkat.voting.gui.managment.TwoWayNode;
/** /**
* Created by Vladimir Eliezer Tokarev on 8/27/2016. * Created by Vladimir Eliezer Tokarev on 8/27/2016.

View File

@ -1,12 +1,10 @@
package meerkat.voting.gui.welcome_splash; package meerkat.voting.gui.panels.welcome_splash;
import javafx.concurrent.Task;
import javafx.fxml.FXMLLoader; import javafx.fxml.FXMLLoader;
import javafx.scene.Parent; import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage; import javafx.stage.Stage;
import meerkat.voting.gui.TwoWayNode; import meerkat.voting.gui.managment.TwoWayNode;
import meerkat.voting.gui.VotingBoothConfiguration; import meerkat.voting.gui.configuration.VotingBoothConfiguration;
import java.io.IOException; import java.io.IOException;

View File

@ -1,9 +1,9 @@
package meerkat.voting.ui; package meerkat.voting.gui.ui;
import meerkat.voting.gui.VotingBoothGUIManager; import meerkat.voting.gui.managment.VotingBoothGUIManager;
import meerkat.protobuf.Voting; import meerkat.protobuf.Voting;
import meerkat.voting.controller.callbacks.*; import meerkat.voting.controller.callbacks.*;
import meerkat.voting.ui.uicommands.*; import meerkat.voting.gui.ui.uicommands.*;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -7,7 +7,7 @@
<?import javafx.scene.layout.*?> <?import javafx.scene.layout.*?>
<?import javafx.scene.text.*?> <?import javafx.scene.text.*?>
<GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="meerkat.voting.gui.ballot_summary.BallotSummaryController"> <GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="meerkat.voting.gui.panels.ballot_summary.BallotSummaryController">
<children> <children>
<GridPane> <GridPane>
<children> <children>

View File

@ -7,7 +7,7 @@
<?import javafx.scene.layout.*?> <?import javafx.scene.layout.*?>
<?import javafx.scene.text.*?> <?import javafx.scene.text.*?>
<GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="meerkat.voting.gui.cast_or_audit.CastOrAuditController"> <GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="meerkat.voting.gui.panels.cast_or_audit.CastOrAuditController">
<children> <children>
<GridPane> <GridPane>
<children> <children>

View File

@ -7,7 +7,7 @@
<?import javafx.scene.layout.*?> <?import javafx.scene.layout.*?>
<?import javafx.scene.text.*?> <?import javafx.scene.text.*?>
<GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="meerkat.voting.gui.select_candidate_by_picture.SelectCandidateByPictureController"> <GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="meerkat.voting.gui.panels.select_candidate_by_picture.SelectCandidateByPictureController">
<children> <children>
<GridPane> <GridPane>
<children> <children>

View File

@ -6,7 +6,7 @@
<?import java.lang.*?> <?import java.lang.*?>
<?import javafx.scene.layout.*?> <?import javafx.scene.layout.*?>
<GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="meerkat.voting.gui.select_candidate_name.SelectCandidateNameController"> <GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="meerkat.voting.gui.panels.select_candidate_name.SelectCandidateNameController">
<children> <children>
<GridPane GridPane.columnIndex="1"> <GridPane GridPane.columnIndex="1">
<children> <children>

View File

@ -6,7 +6,7 @@
<?import java.lang.*?> <?import java.lang.*?>
<?import javafx.scene.layout.*?> <?import javafx.scene.layout.*?>
<GridPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="meerkat.voting.gui.straight_channel_section.StraightChannelSectionController"> <GridPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="meerkat.voting.gui.panels.straight_channel_section.StraightChannelSectionController">
<columnConstraints> <columnConstraints>
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" /> <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
</columnConstraints> </columnConstraints>

View File

@ -8,7 +8,7 @@
<?import javafx.scene.layout.*?> <?import javafx.scene.layout.*?>
<?import javafx.scene.text.*?> <?import javafx.scene.text.*?>
<GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="meerkat.voting.gui.vote_have_been_cast.VoteHaveBeenCastController"> <GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="meerkat.voting.gui.panels.vote_have_been_cast.VoteHaveBeenCastController">
<children> <children>
<GridPane> <GridPane>
<children> <children>

View File

@ -5,7 +5,7 @@
<?import java.lang.*?> <?import java.lang.*?>
<?import javafx.scene.layout.*?> <?import javafx.scene.layout.*?>
<GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="meerkat.voting.gui.welcome_splash.WelcomeSplashController"> <GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="meerkat.voting.gui.panels.welcome_splash.WelcomeSplashController">
<columnConstraints> <columnConstraints>
<ColumnConstraints /> <ColumnConstraints />
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" /> <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />

View File

@ -1,6 +1,6 @@
package meerkat.voting; package meerkat.voting;
import meerkat.voting.gui.VotingBoothConfigurationCreator; import meerkat.voting.gui.configuration.VotingBoothConfigurationCreator;
import org.factcenter.qilin.util.Pair; import org.factcenter.qilin.util.Pair;
import org.json.JSONArray; import org.json.JSONArray;
import org.json.JSONException; import org.json.JSONException;

View File

@ -8,7 +8,7 @@ import meerkat.voting.controller.*;
import meerkat.voting.output.*; import meerkat.voting.output.*;
import meerkat.voting.storage.*; import meerkat.voting.storage.*;
import meerkat.voting.encryptor.*; import meerkat.voting.encryptor.*;
import meerkat.voting.ui.*; import meerkat.voting.gui.ui.*;
import java.io.FileOutputStream; import java.io.FileOutputStream;
import java.io.IOException; import java.io.IOException;

View File

@ -1,7 +1,7 @@
package meerkat.voting.controller; package meerkat.voting.controller;
import meerkat.voting.encryptor.VBCryptoManager; import meerkat.voting.encryptor.VBCryptoManager;
import meerkat.voting.ui.VotingBoothUI; import meerkat.voting.gui.ui.VotingBoothUI;
import meerkat.voting.output.BallotOutputDevice; import meerkat.voting.output.BallotOutputDevice;
import meerkat.voting.storage.StorageManager; import meerkat.voting.storage.StorageManager;

View File

@ -9,7 +9,7 @@ import meerkat.voting.encryptor.VBCryptoManager;
import meerkat.voting.encryptor.VBCryptoManager.EncryptionAndSecrets; import meerkat.voting.encryptor.VBCryptoManager.EncryptionAndSecrets;
import meerkat.voting.output.BallotOutputDevice; import meerkat.voting.output.BallotOutputDevice;
import meerkat.voting.storage.StorageManager; import meerkat.voting.storage.StorageManager;
import meerkat.voting.ui.VotingBoothUI; import meerkat.voting.gui.ui.VotingBoothUI;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -2,7 +2,7 @@ package meerkat.voting.controller.callbacks;
import meerkat.protobuf.Voting.UIElement; import meerkat.protobuf.Voting.UIElement;
import meerkat.voting.controller.commands.*; import meerkat.voting.controller.commands.*;
import meerkat.voting.ui.VotingBoothUI.*; import meerkat.voting.gui.ui.VotingBoothUI.*;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import java.util.concurrent.LinkedBlockingQueue; import java.util.concurrent.LinkedBlockingQueue;

View File

@ -1,4 +1,4 @@
package meerkat.voting.ui; package meerkat.voting.gui.ui;
import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.ArrayBlockingQueue;

View File

@ -1,7 +1,6 @@
package meerkat.voting.ui; package meerkat.voting.gui.ui;
import com.google.common.util.concurrent.FutureCallback; import com.google.common.util.concurrent.FutureCallback;
import com.google.protobuf.ByteString;
import meerkat.protobuf.Voting.*; import meerkat.protobuf.Voting.*;
import java.io.BufferedReader; import java.io.BufferedReader;
@ -10,7 +9,7 @@ import java.io.InputStreamReader;
import java.util.*; import java.util.*;
import meerkat.voting.controller.callbacks.*; import meerkat.voting.controller.callbacks.*;
import meerkat.voting.ui.uicommands.*; import meerkat.voting.gui.ui.uicommands.*;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;

View File

@ -1,7 +1,7 @@
package meerkat.voting.ui; package meerkat.voting.gui.ui;
import meerkat.voting.ui.uicommands.TickCommand; import meerkat.voting.gui.ui.uicommands.TickCommand;
import meerkat.voting.ui.uicommands.UICommand; import meerkat.voting.gui.ui.uicommands.UICommand;
import java.util.TimerTask; import java.util.TimerTask;

View File

@ -1,4 +1,4 @@
package meerkat.voting.ui; package meerkat.voting.gui.ui;
import com.google.protobuf.ByteString; import com.google.protobuf.ByteString;
import meerkat.protobuf.Voting; import meerkat.protobuf.Voting;

View File

@ -1,4 +1,4 @@
package meerkat.voting.ui; package meerkat.voting.gui.ui;
import com.google.common.util.concurrent.FutureCallback; import com.google.common.util.concurrent.FutureCallback;
import meerkat.protobuf.Voting.*; import meerkat.protobuf.Voting.*;

View File

@ -1,7 +1,7 @@
package meerkat.voting.ui.uicommands; package meerkat.voting.gui.ui.uicommands;
import meerkat.voting.controller.callbacks.*; import meerkat.voting.controller.callbacks.*;
import meerkat.voting.ui.VotingBoothUI.FinalizeBallotChoice; import meerkat.voting.gui.ui.VotingBoothUI.FinalizeBallotChoice;
/** /**
* This command signals the UI that the voter should now choose whether to Cast or Audit the ballot * This command signals the UI that the voter should now choose whether to Cast or Audit the ballot

View File

@ -1,4 +1,4 @@
package meerkat.voting.ui.uicommands; package meerkat.voting.gui.ui.uicommands;
import meerkat.protobuf.Voting.*; import meerkat.protobuf.Voting.*;
import meerkat.voting.controller.callbacks.*; import meerkat.voting.controller.callbacks.*;

View File

@ -1,4 +1,4 @@
package meerkat.voting.ui.uicommands; package meerkat.voting.gui.ui.uicommands;
import meerkat.protobuf.Voting.UIElement; import meerkat.protobuf.Voting.UIElement;
import meerkat.voting.controller.callbacks.*; import meerkat.voting.controller.callbacks.*;

View File

@ -1,4 +1,4 @@
package meerkat.voting.ui.uicommands; package meerkat.voting.gui.ui.uicommands;
import meerkat.protobuf.Voting.*; import meerkat.protobuf.Voting.*;
import meerkat.voting.controller.callbacks.*; import meerkat.voting.controller.callbacks.*;

View File

@ -1,4 +1,4 @@
package meerkat.voting.ui.uicommands; package meerkat.voting.gui.ui.uicommands;
import meerkat.voting.controller.callbacks.*; import meerkat.voting.controller.callbacks.*;

View File

@ -1,4 +1,4 @@
package meerkat.voting.ui.uicommands; package meerkat.voting.gui.ui.uicommands;
import meerkat.voting.controller.callbacks.*; import meerkat.voting.controller.callbacks.*;

View File

@ -1,4 +1,4 @@
package meerkat.voting.ui.uicommands; package meerkat.voting.gui.ui.uicommands;
import meerkat.voting.controller.callbacks.*; import meerkat.voting.controller.callbacks.*;

View File

@ -1,4 +1,4 @@
package meerkat.voting.ui.uicommands; package meerkat.voting.gui.ui.uicommands;
import meerkat.protobuf.Voting.*; import meerkat.protobuf.Voting.*;
import meerkat.voting.controller.callbacks.*; import meerkat.voting.controller.callbacks.*;