| Revision 3,
1.0 KB
checked in by jdalbey, 10 years ago
(diff) |
|
Initial Import of project files - cadclientgui
|
| Rev | Line | |
|---|
| 1 | package tmcsim.client.cadclientgui; |
|---|
| 2 | |
|---|
| 3 | import java.rmi.RemoteException; |
|---|
| 4 | |
|---|
| 5 | import tmcsim.client.cadclientgui.data.CADData; |
|---|
| 6 | import tmcsim.client.cadclientgui.data.CardfileData; |
|---|
| 7 | import tmcsim.client.cadclientgui.screens.Login; |
|---|
| 8 | import tmcsim.client.cadclientgui.screens.ScreenManager; |
|---|
| 9 | import tmcsim.client.CADClient; |
|---|
| 10 | |
|---|
| 11 | /** |
|---|
| 12 | * Main class to run CADClient. |
|---|
| 13 | * @author Nicholas |
|---|
| 14 | * |
|---|
| 15 | */ |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | public class CADClientGUI { |
|---|
| 19 | |
|---|
| 20 | private CADData cadData; |
|---|
| 21 | private CardfileData cardfileData; |
|---|
| 22 | public static ScreenManager screen; |
|---|
| 23 | public static Login login; |
|---|
| 24 | public static CADClient client; |
|---|
| 25 | |
|---|
| 26 | public CADClientGUI(){ |
|---|
| 27 | //cadData = new CADData(); |
|---|
| 28 | cardfileData = new CardfileData(); |
|---|
| 29 | } |
|---|
| 30 | |
|---|
| 31 | public CADData getCadData(){ |
|---|
| 32 | return this.cadData; |
|---|
| 33 | } |
|---|
| 34 | |
|---|
| 35 | public void setCadData(CADData cadData){ |
|---|
| 36 | this.cadData = cadData; |
|---|
| 37 | } |
|---|
| 38 | |
|---|
| 39 | public CardfileData getCardfileData(){ |
|---|
| 40 | return this.cardfileData; |
|---|
| 41 | } |
|---|
| 42 | |
|---|
| 43 | public void setCardfileData(CardfileData cardfileData){ |
|---|
| 44 | this.cardfileData = cardfileData; |
|---|
| 45 | } |
|---|
| 46 | |
|---|
| 47 | |
|---|
| 48 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.