Ver código fonte

updating main app

William Simkins 8 anos atrás
pai
commit
46b587fb18

+ 12
- 13
.idea/workspace.xml Ver arquivo

@@ -1,9 +1,7 @@
1 1
 <?xml version="1.0" encoding="UTF-8"?>
2 2
 <project version="4">
3 3
   <component name="ChangeListManager">
4
-    <list default="true" id="268ab437-e0d5-4447-8401-9f321aad6d50" name="Default" comment="">
5
-      <change beforePath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/bankaccountlab/BankAccount.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/zipcodewilmington/bankaccountlab/BankAccount.java" afterDir="false" />
6
-    </list>
4
+    <list default="true" id="268ab437-e0d5-4447-8401-9f321aad6d50" name="Default" comment="" />
7 5
     <ignored path="$PROJECT_DIR$/out/" />
8 6
     <ignored path="$PROJECT_DIR$/target/" />
9 7
     <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
@@ -18,8 +16,8 @@
18 16
       <file leaf-file-name="BankAccount.java" pinned="false" current-in-tab="true">
19 17
         <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/bankaccountlab/BankAccount.java">
20 18
           <provider selected="true" editor-type-id="text-editor">
21
-            <state relative-caret-position="291">
22
-              <caret line="28" column="170" selection-start-line="28" selection-start-column="170" selection-end-line="28" selection-end-column="170" />
19
+            <state relative-caret-position="447">
20
+              <caret line="50" column="69" selection-start-line="50" selection-start-column="69" selection-end-line="50" selection-end-column="69" />
23 21
             </state>
24 22
           </provider>
25 23
         </entry>
@@ -214,8 +212,9 @@
214 212
   <component name="NodePackageJsonFileManager">
215 213
     <packageJsonPaths />
216 214
   </component>
217
-  <component name="ProjectFrameBounds">
218
-    <option name="y" value="25" />
215
+  <component name="ProjectFrameBounds" extendedState="6">
216
+    <option name="x" value="-17" />
217
+    <option name="y" value="23" />
219 218
     <option name="width" value="1280" />
220 219
     <option name="height" value="722" />
221 220
   </component>
@@ -538,7 +537,7 @@
538 537
       <updated>1515620835041</updated>
539 538
       <workItem from="1528839645339" duration="5064000" />
540 539
       <workItem from="1529265876755" duration="1341000" />
541
-      <workItem from="1529409320058" duration="14431000" />
540
+      <workItem from="1529409320058" duration="14641000" />
542 541
     </task>
543 542
     <servers />
544 543
   </component>
@@ -575,10 +574,10 @@
575 574
     </history-entry>
576 575
   </component>
577 576
   <component name="TimeTrackingManager">
578
-    <option name="totallyTimeSpent" value="20836000" />
577
+    <option name="totallyTimeSpent" value="21046000" />
579 578
   </component>
580 579
   <component name="ToolWindowManager">
581
-    <frame x="0" y="25" width="1280" height="722" extended-state="0" />
580
+    <frame x="0" y="23" width="1280" height="722" extended-state="6" />
582 581
     <editor active="true" />
583 582
     <layout>
584 583
       <window_info anchor="right" id="Palette" order="3" />
@@ -591,7 +590,7 @@
591 590
       <window_info anchor="right" id="Maven Projects" order="3" />
592 591
       <window_info anchor="bottom" id="Database Changes" order="8" show_stripe_button="false" />
593 592
       <window_info anchor="bottom" id="Version Control" order="7" />
594
-      <window_info active="true" anchor="bottom" id="Run" order="2" visible="true" weight="0.3296" />
593
+      <window_info anchor="bottom" id="Run" order="2" weight="0.3296" />
595 594
       <window_info anchor="bottom" id="Terminal" order="7" weight="0.3287037" />
596 595
       <window_info id="Capture Tool" order="2" />
597 596
       <window_info id="Designer" order="2" />
@@ -1061,8 +1060,8 @@
1061 1060
     </entry>
1062 1061
     <entry file="file://$PROJECT_DIR$/src/main/java/com/zipcodewilmington/bankaccountlab/BankAccount.java">
1063 1062
       <provider selected="true" editor-type-id="text-editor">
1064
-        <state relative-caret-position="291">
1065
-          <caret line="28" column="170" selection-start-line="28" selection-start-column="170" selection-end-line="28" selection-end-column="170" />
1063
+        <state relative-caret-position="447">
1064
+          <caret line="50" column="69" selection-start-line="50" selection-start-column="69" selection-end-line="50" selection-end-column="69" />
1066 1065
         </state>
1067 1066
       </provider>
1068 1067
     </entry>

+ 7
- 0
src/main/java/com/zipcodewilmington/bankaccountlab/MainApplication.java Ver arquivo

@@ -4,4 +4,11 @@ package com.zipcodewilmington.bankaccountlab;
4 4
  * Created by leon on 1/10/18.
5 5
  */
6 6
 public class MainApplication {
7
+
8
+
9
+   public static void main(String[] args){
10
+       BankAccount ba = new BankAccount();
11
+       ba.start();
12
+   }
13
+
7 14
 }