From fe35713fbf8e471c684576ca55a83e0efce61a19 Mon Sep 17 00:00:00 2001 From: emaquino44 Date: Tue, 5 Feb 2019 13:30:43 -0800 Subject: [PATCH 1/2] initial commit - added filesf --- .idea/codeStyles/codeStyleConfig.xml | 5 + .idea/encodings.xml | 4 + .idea/java-WordCount.iml | 9 + .idea/misc.xml | 7 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + .idea/workspace.xml | 266 +++++++++++++++++++++++++++ src/WordCountApp/Word.java | 62 +++++++ src/WordCountApp/main.java | 8 + 9 files changed, 375 insertions(+) create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/java-WordCount.iml 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 src/WordCountApp/Word.java create mode 100644 src/WordCountApp/main.java diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..a55e7a1 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..15a15b2 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/java-WordCount.iml b/.idea/java-WordCount.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/java-WordCount.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..c5b887b --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..639441e --- /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..fe379c0 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,266 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - 1549400789046 + + 1549414033171 - - + @@ -125,12 +139,12 @@ - + - + @@ -154,113 +168,16 @@ - - - - + - - + + - - + + - - - - - - - - - - - - - - - - - - - - - No facets are configured - - - - - - - - - - - - - - - 11 - - - - - - - - java-WordCount - - - - - - - - 11 - - - - - - - - - - - - - \ No newline at end of file diff --git a/java-WordCount.iml b/java-WordCount.iml new file mode 100644 index 0000000..d5c0743 --- /dev/null +++ b/java-WordCount.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/out/production/java-WordCount/com/LambdaSchool/Main.class b/out/production/java-WordCount/com/LambdaSchool/Main.class new file mode 100644 index 0000000000000000000000000000000000000000..8770bdb508db0d9c91761f83a0180d7f7850a07a GIT binary patch literal 542 zcmZuuxlY4C5Ph4=2Zn?MC)^OKK!M8?K{QBI=8%liP_3O+*vR%G$3fz=pa6-258$H^ zvkp=eDO=3!yqSG(X7=az>l;8HCpK!>vf!d^qGMwlI|g@n0XWGeGZhH~$8$WXab zBf(JjWh!oGNhq=h9>#<;eHHO|$TO+qf3T82$tgp}k5uCMJPAiUh@O;+y&Epm0nsJo z8QQ%^f5Kn57xQ%N1$idZ@t~07*_a4gE7A;hpk`SluBFzuG~>A@abUnSuQ=i!7;iF?#fme8Vmiqa3Z372?}1PxkzXUYDNin-mFyKJ$0H>zk(+;O{?Hoh8c`! zT@=%pZg16;=%PyN*QW$3he_6=$Rp3lSI<7d-iowMwpM^;tkK<>7m#14$ifEdgy_fp hf{d_tl$zxaR2Bp_r8JF6S_={j4QvulUrDxv)*lnxaUcKy literal 0 HcmV?d00001 diff --git a/src/WordCountApp/Word.java b/src/WordCountApp/Word.java deleted file mode 100644 index 699bad5..0000000 --- a/src/WordCountApp/Word.java +++ /dev/null @@ -1,62 +0,0 @@ -package WordCountApp; - -public class Word -{ - private String breed; - private int avgWeight; - private boolean apartment; - - //create constructors - - public Dogs(String breed, int avgWeight, boolean apartment) - { - this.breed = breed; - this.avgWeight = avgWeight; - this.apartment = apartment; - } - - - //create getter and setters - - public String getBreed() - { - return breed; - } - - public void setBreed(String breed) - { - this.breed = breed; - } - - public int getAvgWeight() - { - return avgWeight; - } - - public void setAvgWeight(int avgWeight) - { - this.avgWeight = avgWeight; - } - - public boolean isApartment() - { - return apartment; - } - - public void setApartment(boolean apartment) - { - this.apartment = apartment; - } - - - //override toString methods - @Override - public String toString() - { - return "Dogs{" + - "breed='" + breed + '\'' + - ", avgWeight=" + avgWeight + - ", apartment=" + apartment + - '}'; - } -} \ No newline at end of file diff --git a/src/WordCountApp/main.java b/src/WordCountApp/main.java deleted file mode 100644 index fec5b53..0000000 --- a/src/WordCountApp/main.java +++ /dev/null @@ -1,8 +0,0 @@ -package WordCountApp; - -public class Main { - public static void main(String[] args) - { - System.out.println("*** Arrays ***"); - } -} \ No newline at end of file diff --git a/src/com/LambdaSchool/Main.java b/src/com/LambdaSchool/Main.java new file mode 100644 index 0000000..8db055f --- /dev/null +++ b/src/com/LambdaSchool/Main.java @@ -0,0 +1,8 @@ +package com.LambdaSchool; + +public class Main { + + public static void main(String[] args) { + System.out.println("test"); + } +}