From f219e7db19a6ca2990bc41f0103c16bac6575435 Mon Sep 17 00:00:00 2001 From: Amcbri15 Date: Thu, 28 May 2015 20:02:22 -0400 Subject: [PATCH 1/2] Finished assessment --- .idea/.name | 1 + .idea/compiler.xml | 23 + .idea/copyright/profiles_settings.xml | 3 + .idea/libraries/lib.xml | 10 + .idea/misc.xml | 114 ++++ .idea/modules.xml | 8 + .idea/vcs.xml | 6 + .idea/workspace.xml | 550 ++++++++++++++++++ README.md | 4 +- .../Exercises$Child.class | Bin 0 -> 584 bytes .../Exercises$Parent.class | Bin 0 -> 425 bytes .../Exercises.class | Bin 0 -> 355 bytes .../unit-1-bootcamp-assessment/MyNode.class | Bin 0 -> 1008 bytes .../unit-1-bootcamp-assessment/MyObject.class | Bin 0 -> 1066 bytes .../MyObjectNode.class | Bin 0 -> 1547 bytes .../unit-1-bootcamp-assessment/Tests.class | Bin 0 -> 3888 bytes src/Exercises.java | 6 +- src/MyObject.java | 44 ++ src/MyObjectNode.java | 63 ++ src/Tests.java | 4 +- unit-1-bootcamp-assessment.iml | 12 + 21 files changed, 841 insertions(+), 7 deletions(-) create mode 100644 .idea/.name create mode 100644 .idea/compiler.xml create mode 100644 .idea/copyright/profiles_settings.xml create mode 100644 .idea/libraries/lib.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 out/production/unit-1-bootcamp-assessment/Exercises$Child.class create mode 100644 out/production/unit-1-bootcamp-assessment/Exercises$Parent.class create mode 100644 out/production/unit-1-bootcamp-assessment/Exercises.class create mode 100644 out/production/unit-1-bootcamp-assessment/MyNode.class create mode 100644 out/production/unit-1-bootcamp-assessment/MyObject.class create mode 100644 out/production/unit-1-bootcamp-assessment/MyObjectNode.class create mode 100644 out/production/unit-1-bootcamp-assessment/Tests.class create mode 100644 src/MyObject.java create mode 100644 src/MyObjectNode.java create mode 100644 unit-1-bootcamp-assessment.iml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..540cdbc --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +unit-1-bootcamp-assessment \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..a852314 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,23 @@ + + + + + \ No newline at end of file diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml new file mode 100644 index 0000000..e7bedf3 --- /dev/null +++ b/.idea/copyright/profiles_settings.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/.idea/libraries/lib.xml b/.idea/libraries/lib.xml new file mode 100644 index 0000000..85d6a10 --- /dev/null +++ b/.idea/libraries/lib.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..253bc07 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.7 + + + + + + + + 1.7 + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..8928d91 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..b1c35db --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,550 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1432855469006 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/README.md b/README.md index c02997c..5864af7 100644 --- a/README.md +++ b/README.md @@ -21,9 +21,9 @@ 10. Submit a pull request with all your code. -Test Start time: Thu May 28, 7:00pm EST +Test Start time: Thu May 28, 7:20pm EST -My End time: `` +My End time: 8:00pm EST Test End time: Fri May 29, 10:00pm EST diff --git a/out/production/unit-1-bootcamp-assessment/Exercises$Child.class b/out/production/unit-1-bootcamp-assessment/Exercises$Child.class new file mode 100644 index 0000000000000000000000000000000000000000..a39226f197f54a5195ff0c040a32dc8854544146 GIT binary patch literal 584 zcmZutO;5r=6r80kEr>n`)2p^>-_`35w?pkP`9vZVa>$4i4BJQsSIUu#-KUPE`#2Ve8I5f z%1~U7?|UM?<-LFy+l@RPba^aQKOyyGC`SxNdnf~+p>!37B5ntKG!jHt-Sa0Ady<;n zRB^&!`cWqt_xlVrr|I7D2i^*JIB0c}ScU@<>^bx7zd}Y6?0GFiu@jABPh3b9yF86> zsD_o0he?6GEUp$UKU)mNEerP^OMDphBxM9}p^?X6IfAX07IoRhzL^C)Q)aTx!++ kTCLPt&$cI472C#gYO1B9Rlw^L+pjv7pPonql+s6zug%K1igHu1R9Ap>Tdo# zRQ6F0Ga_-4r!pHzt6jYWgW^fg=))-}bnViiO@i@7DQ#REsju(^*fpC=f zi}`pg&}w&*seF~)OqxlzUs!D>B-Hx(+@|VAyRq9Vhcid5V*?cqd?^QpI1p&A7|R)i z)~@%%sY#BK|R<*kBXO|AOsbZ-Z$xDx5N!>(&FFpBzW)#_@j!m zX^Fe+e7yH&nAzXW_YZ(6P6G6icsTHI=;4UqrVCZh3E_j*(xj!RYgv0ZCJdg1k-FjF zMrqaD68h&CGlG*=b4iFYrRC%5J(uQHTetUbh+ zyRsd%zhHB~z5D`wa?nG_Hehe14hGocDBOxLM$~HJ*6uS4B&>D#x$xn!_u>BmE15>? literal 0 HcmV?d00001 diff --git a/out/production/unit-1-bootcamp-assessment/MyNode.class b/out/production/unit-1-bootcamp-assessment/MyNode.class new file mode 100644 index 0000000000000000000000000000000000000000..543daefe933aea074a17a58a58bc88508d74c533 GIT binary patch literal 1008 zcmZuvO>YuW6g`g_7(Ry5A}v*gcHFnVLcCT#-tO(Wj}@YQuf0#m+|#~R$kq<@2VL&yZoB-ldEmBuauPdUyQ}?S z-&HUg4I;6M*Y*4=OQ*2Qm!GkjLZ;?*-R$P-eSNA=s$Drx&djo}q zi+9IIll$~oU4^5n9A>p$zZU3DI)%T=s?(Rjcvvpjuf6#X*`fwXC?+N@e~qZBFEDX378Ms zEnGnIBq`AwM5+xUo$#G-;4<%5aP3chof)lBo{ay&XfnPjo*{CMMClw+<5Y?fa-|Vw zB`ux7I6>4D+#F#>0=z8^oQot^fc4 literal 0 HcmV?d00001 diff --git a/out/production/unit-1-bootcamp-assessment/MyObject.class b/out/production/unit-1-bootcamp-assessment/MyObject.class new file mode 100644 index 0000000000000000000000000000000000000000..6986b3e2cb1e3d2b258d52a4a7ce416eb9baedfa GIT binary patch literal 1066 zcmZ{hL2nXK6ot=Y1_s8VP}-uFR$8q(16md?HI2q-(uCFpO%uB?dEf-6(m`P`@u#?R z=f;I5wk9t80sbiCd2fbN3WntI?wxzSd+vRI{{H$6-~k#ovbdFlg)Md5wt3vKaTl(- zc@}CG>H=mcPkez=^H_e6jh+mLw5N|>t!hN!uSB$aYU-`W@Ljl!HLUNz#no1VaJ4x%cr!``GV9M3>#!hPw)F4gF|eTUwb@ zqAD`1c%qD%Zmj5z70a$SOQnDXT0rxh#R`Vc-j8HYAn#5rc}JYI&s-~#ows}PU1HvD z^+$t_|2$CR<;N3jt8F>RW5GcVwu38h99+k$g?kR}W7|OmYXaG^K%h8TaJ+@7RJ?O~ z^_4YlYijyrZQc-EM;_y2|YHtf;20Y(Q;gMPR%4#fvdPS!>UXfC;Oi zW3|5@NPVM$6i1{@rh%%)T;3fYe2&=odP%%BSGiL?g^twdw22G@qT7Rsj+|-V4{saD=l}G>p literal 0 HcmV?d00001 diff --git a/out/production/unit-1-bootcamp-assessment/MyObjectNode.class b/out/production/unit-1-bootcamp-assessment/MyObjectNode.class new file mode 100644 index 0000000000000000000000000000000000000000..b87f4054cc373e16112fa032f3682cc081b9c9c0 GIT binary patch literal 1547 zcmZ`(YflqV5IwiucH6SN%FDL`f_+lnf;={ePmVy z+E~&BtQJ;^x>*wFjlHWWxowxtQhv^uT~@Kv)8iOGLJ)SUacm1+AT z`l==4R5EAZ+tx|>z*seEopd$B@NH_ei;Fb-#BX_0A=|vW=<6R?tkjgCO8KA`0r4Aie#J0~Wwo&9J zSSKXa<5D)Q%ogWn6T;AooQ7&vRz9BS1%Xznz9;D($LT=TCouklOfPU9l-OQ;7yaDX zHg3G1`%G4}e3F=RlN;|agw%;=FJBqnf_ETs0rABN>*E=8oCKvhSglVSIu6fnR zII9C8{=y^?VLuw~k>Vi9#pxO0z$Qs+mi;WF51Z^#_MCA0!d*to{59Oi19siPP3WiP zW7G@=X!+?K#KS71MSk%yBbZ2jN93vx`S$=~1ehW5d)=t2CQ>gcwv=+HIaW&})&Q{v zufdW7lUT!e#8WC=*O%6aHAJl8Yp~?dC02}jHIDonBA*HFqj28H6An!M$OYwWmfX^q qJlZrliByxyT4VBb)8zD}oKsGx_!bmk3l)yjC`d|(Oj@^ub}WspNu-fG zGfHfFg{G8ixwhq6palwr1X{rHBCB0I^U7a<|InwFeP%|ZvE#G_uVtOvcfN0*z4tk? z|M~vk-vw|GYby4lEMq}M8_Eh6MO#r};-ZR6sES@qh9w3|Dmp~W;|gribyT=$D7Y-z zD=KzlS;mTJza--c6@4hHcoI*E-qSLkQShvSFDv+pNcNn9s|uc1@KpsbDEOL;uXo@Z z_@>zYEg9cd@S@7`cT{{A-;?ou3GGKs%XE)Rh^0r)ONdX`%Z7wIa;9Yz8nt=Dp4I28 zoJr>DCB1rHw@on)CgX0!bR@{RS;KLiBNDc`?A&v2)~Xn`>FQR=IIG)+geck#_#r!9$JUAwp2B0B-JSzu4~vtA=M-dL=xD>LY3#5$Qy2@UKWsa+a8uM_{fI_ zRSk2?adZKBLpxD_XJS8#{5TexI0Ep33VblJN%(FW?mof5bIn-)IEhd&h8d#sY7*!rnP^vBIvHJfXX~hU@qfSDFC) z6(I_XGse?JUNqcbial@Yj#eG-9?1B!hPRN>@HYOk4u*fJ$WPuZRdl1e>oh&$)GZBv z#ouJCij&?TKc2?TGkSM9d|K$v4dwhBE}4`;PKHmK zO&T=uw%P8?;|;yaORz5;F?R48+&Uv(;69P7qSs0`tvQj`-4fqYW>8Jb@m|z3#4!?0 z=h1Xz#53l`jdY{xBblw}gf$l3*u=3}#UlbsjBl)j1L@6E-?rl3Xpw-VO?m63=*1Ps zHEP}&n%t+>u^d_AX*#NWg1spTdp@F$PYmB9%eaya*xRUK_%f@+;$L}^y(2vmedBI< zPw#BGX8jsD)5~S57=;$p7H{)$R_eCd+(d@R)0Dh4G-!uWJe3cCOL%1qlKG?zSZRz z!YKbf58(KDLU)8rsKt(6$D74GMc5UQgwqRiGaUZrln5Nq+WV5WPsF-z(VfCk+ZJ z#C{NmS@;v&5oh~Je2P7Bjw!Yhj)Z`oBrpN!&`op@P-iZw-5!vV>>B$AI+9(h*h0uH zYy-><3=rEOv2Ew)4(!2BqPQ!9?@)+u97jJC-?0$i^F$YC?!h(wxi^;VUd7h@_$rcx z{XOXM`4TWw)$bZlaIG_D{w4PbE@`cMrG64$FOVU;AqqOeOl{ z$tfijPbsU|wu(C+yedm?eDLq~caWNkB?pRg@#J7}E|J_`+_-ljvUd$T=oD}3e*_tE zkBkF^55kMnc%7W-CJiYbf0Cv=#&#NqVBtP2vwfNe6vn+u15Yyg0i2?i+euv(r|G*P z+>Os7N0o=EXr4X(UjP*aoMGHUq&bVTjJv={KkhNA@5hmnkn|@)(%q2sIzGo5F=AW5 zITVRk&@UX_$^R|xhoIkIo8{W)xi*IQ2Lz(XI4|Qt84t;rlkqS=C0@+;u=9Ovm+^=s zy+<3~PPs3H%KeMLg>u(@<#q-Z`@fWvedX>F%Iy-$4Hf6wlXrh?`Nk9PVE0_C2PtNF z8^gs_?BUd2x?vw@x+m9==G@3sq9ybsy$W9GI4@Nv3GSw^QzUMZu0F!H|hhGM@Siv4OR_Dg}-*Lcq^5Mv@DyNLH? w7g7I%>_Z klass = cl.loadClass("MyObjectNode"); Method[] methods = klass.getMethods(); - ArrayList methodNames = new ArrayList<>(); + ArrayList methodNames = new ArrayList(); for (Method m : methods){ methodNames.add(m.getName()); } @@ -60,7 +60,7 @@ public void test05MyObjectHasNameAndAge() throws Exception { Class klass = cl.loadClass("MyObject"); Method[] methods = klass.getMethods(); - ArrayList methodNames = new ArrayList<>(); + ArrayList methodNames = new ArrayList(); for (Method m : methods){ methodNames.add(m.getName()); } diff --git a/unit-1-bootcamp-assessment.iml b/unit-1-bootcamp-assessment.iml new file mode 100644 index 0000000..fb8e866 --- /dev/null +++ b/unit-1-bootcamp-assessment.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file From 9b00fe358d03adce7a27e0d8c4c97c328b7354c7 Mon Sep 17 00:00:00 2001 From: Amcbri15 Date: Thu, 28 May 2015 20:04:38 -0400 Subject: [PATCH 2/2] Added total time spent to README --- .idea/workspace.xml | 17 +++++++---------- README.md | 2 +- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index b1c35db..a8b8ab7 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -2,11 +2,8 @@ - - - - + @@ -54,8 +51,8 @@ - - + + @@ -434,7 +431,7 @@ - + @@ -453,7 +450,7 @@ - + @@ -540,8 +537,8 @@ - - + + diff --git a/README.md b/README.md index 5864af7..e2efe92 100644 --- a/README.md +++ b/README.md @@ -27,4 +27,4 @@ My End time: 8:00pm EST Test End time: Fri May 29, 10:00pm EST -Total time: 27 hours +Total time: 30 minutes(10 minutes for procrastination)