File: /Users/shatabdi/Education/GitHub/se450_project/src/view/interfaces/IDialogChoice.java

1     //this class is copied from project starter code
2     package view.interfaces;
3     
4     public interface IDialogChoice<T> {
5     	T getCurrentSelection();
6     
7     	T[] getDialogOptions();
8     
9     	String getDialogText();
10     
11     	String getDialogTitle();
12     }
13