Browse Source

Removing ignored files

Kr Younger 6 years ago
parent
commit
1f2e7dc960

+ 23
- 4
.gitignore View File

@@ -1,7 +1,26 @@
1 1
 /target/
2 2
 .DS_Store
3 3
 .classpath
4
-#.project
5
-.settings
6
-.idea/
7
-.class
4
+# Compiled class file
5
+*.class
6
+
7
+# Log file
8
+*.log
9
+
10
+# BlueJ files
11
+*.ctxt
12
+
13
+# Mobile Tools for Java (J2ME)
14
+.mtj.tmp/
15
+
16
+# Package Files #
17
+*.jar
18
+*.war
19
+*.nar
20
+*.ear
21
+*.zip
22
+*.tar.gz
23
+*.rar
24
+
25
+# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
26
+hs_err_pid*

BIN
Method Fundamentals/MathUtilities.class View File


+ 0
- 82
Method Fundamentals/MathUtilities.ctxt View File

@@ -1,82 +0,0 @@
1
-#BlueJ class context
2
-comment0.target=MathUtilities
3
-comment0.text=\n\ Created\ by\ dan\ on\ 6/14/17.\n
4
-comment1.params=baseValue\ difference
5
-comment1.target=java.lang.Integer\ add(int,\ int)
6
-comment1.text=\n\ @param\ baseValue\ \ starting\ value\n\ @param\ difference\ value\ to\ add\ to\ starting\ value\n\ @return\ sum\ of\ `baseValue`\ and\ `difference`\n
7
-comment10.params=baseValue\ difference
8
-comment10.target=java.lang.Byte\ subtract(byte,\ byte)
9
-comment10.text=\n\ @param\ baseValue\ \ starting\ value\n\ @param\ difference\ value\ to\ subtract\ from\ starting\ value\n\ @return\ difference\ between\ `baseValue`\ and\ `difference`\n
10
-comment11.params=baseValue\ difference
11
-comment11.target=java.lang.Float\ subtract(float,\ float)
12
-comment11.text=\n\ @param\ baseValue\ \ starting\ value\n\ @param\ difference\ value\ to\ subtract\ from\ starting\ value\n\ @return\ difference\ between\ `baseValue`\ and\ `difference`\n
13
-comment12.params=baseValue\ difference
14
-comment12.target=java.lang.Double\ subtract(double,\ double)
15
-comment12.text=\n\ @param\ baseValue\ \ starting\ value\n\ @param\ difference\ value\ to\ subtract\ from\ starting\ value\n\ @return\ difference\ between\ `baseValue`\ and\ `difference`\n
16
-comment13.params=dividend\ divisor
17
-comment13.target=java.lang.Integer\ divide(int,\ int)
18
-comment13.text=\n\ @param\ dividend\ value\ to\ be\ divided\n\ @param\ divisor\ value\ to\ divide\ by\n\ @return\ division\ of\ `dividend`\ by\ `divisor\n
19
-comment14.params=dividend\ divisor
20
-comment14.target=java.lang.Long\ divide(long,\ long)
21
-comment14.text=\n\ @param\ dividend\ value\ to\ be\ divided\n\ @param\ divisor\ value\ to\ divide\ by\n\ @return\ division\ of\ `dividend`\ by\ `divisor\n
22
-comment15.params=dividend\ divisor
23
-comment15.target=java.lang.Short\ divide(short,\ short)
24
-comment15.text=\n\ @param\ dividend\ value\ to\ be\ divided\n\ @param\ divisor\ value\ to\ divide\ by\n\ @return\ division\ of\ `dividend`\ by\ `divisor\n
25
-comment16.params=dividend\ divisor
26
-comment16.target=java.lang.Byte\ divide(byte,\ byte)
27
-comment16.text=\n\ @param\ dividend\ value\ to\ be\ divided\n\ @param\ divisor\ value\ to\ divide\ by\n\ @return\ division\ of\ `dividend`\ by\ `divisor\n
28
-comment17.params=dividend\ divisor
29
-comment17.target=java.lang.Float\ divide(float,\ float)
30
-comment17.text=\n\ @param\ dividend\ value\ to\ be\ divided\n\ @param\ divisor\ value\ to\ divide\ by\n\ @return\ division\ of\ `dividend`\ by\ `divisor\n
31
-comment18.params=dividend\ divisor
32
-comment18.target=java.lang.Double\ divide(double,\ double)
33
-comment18.text=\n\ @param\ dividend\ value\ to\ be\ divided\n\ @param\ divisor\ value\ to\ divide\ by\n\ @return\ division\ of\ `dividend`\ by\ `divisor\n
34
-comment19.params=multiplicand\ multiplier
35
-comment19.target=java.lang.Integer\ multiply(int,\ int)
36
-comment19.text=\n\ @param\ multiplicand\ value\ to\ be\ multiplied\n\ @param\ multiplier\ value\ to\ multiply\ by\n\ @return\ product\ of\ `multiplicand`\ by\ `multiplier`\n
37
-comment2.params=baseValue\ difference
38
-comment2.target=java.lang.Long\ add(long,\ long)
39
-comment2.text=\n\ @param\ baseValue\ \ starting\ value\n\ @param\ difference\ value\ to\ add\ to\ starting\ value\n\ @return\ sum\ of\ `baseValue`\ and\ `difference`\n
40
-comment20.params=multiplicand\ multiplier
41
-comment20.target=java.lang.Long\ multiply(long,\ long)
42
-comment20.text=\n\ @param\ multiplicand\ value\ to\ be\ multiplied\n\ @param\ multiplier\ value\ to\ multiply\ by\n\ @return\ product\ of\ `multiplicand`\ by\ `multiplier`\n
43
-comment21.params=multiplicand\ multiplier
44
-comment21.target=java.lang.Short\ multiply(short,\ short)
45
-comment21.text=\n\ @param\ multiplicand\ value\ to\ be\ multiplied\n\ @param\ multiplier\ value\ to\ multiply\ by\n\ @return\ product\ of\ `multiplicand`\ by\ `multiplier`\n
46
-comment22.params=multiplicand\ multiplier
47
-comment22.target=java.lang.Byte\ multiply(byte,\ byte)
48
-comment22.text=\n\ @param\ multiplicand\ value\ to\ be\ multiplied\n\ @param\ multiplier\ value\ to\ multiply\ by\n\ @return\ product\ of\ `multiplicand`\ by\ `multiplier`\n
49
-comment23.params=multiplicand\ multiplier
50
-comment23.target=java.lang.Float\ multiply(float,\ float)
51
-comment23.text=\n\ @param\ multiplicand\ value\ to\ be\ multiplied\n\ @param\ multiplier\ value\ to\ multiply\ by\n\ @return\ product\ of\ `multiplicand`\ by\ `multiplier`\n
52
-comment24.params=multiplicand\ multiplier
53
-comment24.target=java.lang.Double\ multiply(double,\ double)
54
-comment24.text=\n\ @param\ multiplicand\ value\ to\ be\ multiplied\n\ @param\ multiplier\ value\ to\ multiply\ by\n\ @return\ product\ of\ `multiplicand`\ by\ `multiplier`\n
55
-comment25.params=
56
-comment25.target=java.lang.Boolean\ returnTrue()
57
-comment25.text=\n\ @return\ true\n
58
-comment26.params=
59
-comment26.target=java.lang.Boolean\ returnFalse()
60
-comment26.text=\n\ @return\ false\n
61
-comment3.params=baseValue\ difference
62
-comment3.target=java.lang.Short\ add(short,\ short)
63
-comment3.text=\n\ @param\ baseValue\ \ starting\ value\n\ @param\ difference\ value\ to\ add\ to\ starting\ value\n\ @return\ sum\ of\ `baseValue`\ and\ `difference`\n
64
-comment4.params=baseValue\ difference
65
-comment4.target=java.lang.Byte\ add(byte,\ byte)
66
-comment4.text=\n\ @param\ baseValue\ \ starting\ value\n\ @param\ difference\ value\ to\ add\ to\ starting\ value\n\ @return\ sum\ of\ `baseValue`\ and\ `difference`\n
67
-comment5.params=baseValue\ difference
68
-comment5.target=java.lang.Float\ add(float,\ float)
69
-comment5.text=\n\ @param\ baseValue\ \ starting\ value\n\ @param\ difference\ value\ to\ add\ to\ starting\ value\n\ @return\ sum\ of\ `baseValue`\ and\ `difference`\n
70
-comment6.params=baseValue\ difference
71
-comment6.target=java.lang.Double\ add(double,\ double)
72
-comment6.text=\n\ @param\ baseValue\ \ starting\ value\n\ @param\ difference\ value\ to\ add\ to\ starting\ value\n\ @return\ sum\ of\ `baseValue`\ and\ `difference`\n
73
-comment7.params=baseValue\ difference
74
-comment7.target=java.lang.Integer\ subtract(int,\ int)
75
-comment7.text=\n\ @param\ baseValue\ \ starting\ value\n\ @param\ difference\ value\ to\ subtract\ from\ starting\ value\n\ @return\ difference\ between\ `baseValue`\ and\ `difference`\n
76
-comment8.params=baseValue\ difference
77
-comment8.target=java.lang.Long\ subtract(long,\ long)
78
-comment8.text=\n\ @param\ baseValue\ \ starting\ value\n\ @param\ difference\ value\ to\ subtract\ from\ starting\ value\n\ @return\ difference\ between\ `baseValue`\ and\ `difference`\n
79
-comment9.params=baseValue\ difference
80
-comment9.target=java.lang.Short\ subtract(short,\ short)
81
-comment9.text=\n\ @param\ baseValue\ \ starting\ value\n\ @param\ difference\ value\ to\ subtract\ from\ starting\ value\n\ @return\ difference\ between\ `baseValue`\ and\ `difference`\n
82
-numComments=27

BIN
Method Fundamentals/MathUtilitiesTest.class View File


+ 0
- 65
Method Fundamentals/MathUtilitiesTest.ctxt View File

@@ -1,65 +0,0 @@
1
-#BlueJ class context
2
-comment0.target=MathUtilitiesTest
3
-comment0.text=\n\ The\ test\ class\ MathUtilitiesTest.\n\n\ @author\ \ (your\ name)\n\ @version\ (a\ version\ number\ or\ a\ date)\n
4
-comment1.params=
5
-comment1.target=MathUtilitiesTest()
6
-comment1.text=\n\ Default\ constructor\ for\ test\ class\ MathUtilitiesTest\n
7
-comment10.params=
8
-comment10.target=void\ testSubtractions()
9
-comment11.params=
10
-comment11.target=void\ testSubtractions1()
11
-comment12.params=
12
-comment12.target=void\ testSubtractions2()
13
-comment13.params=
14
-comment13.target=void\ testSubtractions3()
15
-comment14.params=
16
-comment14.target=void\ testSubtractions4()
17
-comment15.params=
18
-comment15.target=void\ testSubtractions5()
19
-comment16.params=
20
-comment16.target=void\ testDivision()
21
-comment17.params=
22
-comment17.target=void\ testDivision1()
23
-comment18.params=
24
-comment18.target=void\ testDivision2()
25
-comment19.params=
26
-comment19.target=void\ testDivision3()
27
-comment2.params=
28
-comment2.target=void\ setUp()
29
-comment2.text=\n\ Sets\ up\ the\ test\ fixture.\n\n\ Called\ before\ every\ test\ case\ method.\n
30
-comment20.params=
31
-comment20.target=void\ testDivision4()
32
-comment21.params=
33
-comment21.target=void\ testDivision5()
34
-comment22.params=
35
-comment22.target=void\ testMultiplication()
36
-comment23.params=
37
-comment23.target=void\ testMultiplication1()
38
-comment24.params=
39
-comment24.target=void\ testMultiplication2()
40
-comment25.params=
41
-comment25.target=void\ testMultiplication3()
42
-comment26.params=
43
-comment26.target=void\ testMultiplication4()
44
-comment27.params=
45
-comment27.target=void\ testMultiplication5()
46
-comment28.params=
47
-comment28.target=void\ testReturnTrue()
48
-comment29.params=
49
-comment29.target=void\ testReturnFalse()
50
-comment3.params=
51
-comment3.target=void\ tearDown()
52
-comment3.text=\n\ Tears\ down\ the\ test\ fixture.\n\n\ Called\ after\ every\ test\ case\ method.\n
53
-comment4.params=
54
-comment4.target=void\ testAdditions()
55
-comment5.params=
56
-comment5.target=void\ testAdditions1()
57
-comment6.params=
58
-comment6.target=void\ testAdditions2()
59
-comment7.params=
60
-comment7.target=void\ testAdditions4()
61
-comment8.params=
62
-comment8.target=void\ testAdditions5()
63
-comment9.params=
64
-comment9.target=void\ testAdditions6()
65
-numComments=30

BIN
Method Fundamentals/PredicateUtilities.class View File


+ 0
- 16
Method Fundamentals/PredicateUtilities.ctxt View File

@@ -1,16 +0,0 @@
1
-#BlueJ class context
2
-comment0.target=PredicateUtilities
3
-comment0.text=\n\ Created\ by\ dan\ on\ 6/14/17.\n
4
-comment1.params=x\ y
5
-comment1.target=java.lang.Boolean\ isGreaterThan(int,\ int)
6
-comment1.text=\n\ @param\ x\n\ @param\ y\n\ @return\ true\ if\ `x`\ is\ greater\ than\ `y`\n
7
-comment2.params=x\ y
8
-comment2.target=java.lang.Boolean\ isLessThan(int,\ int)
9
-comment2.text=\n\ @param\ x\n\ @param\ y\n\ @return\ true\ if\ `x`\ is\ less\ than\ `y`\n
10
-comment3.params=x\ y
11
-comment3.target=java.lang.Boolean\ isGreaterThanOrEqualTo(int,\ int)
12
-comment3.text=\n\ @param\ x\n\ @param\ y\n\ @return\ true\ if\ `x`\ is\ greater\ than\ or\ equal\ to\ `y`\n
13
-comment4.params=x\ y
14
-comment4.target=java.lang.Boolean\ isLessThanOrEqualTo(int,\ int)
15
-comment4.text=\n\ @param\ x\n\ @param\ y\n\ @return\ true\ if\ `x`\ is\ less\ than\ or\ equal\ to\ `y`\n
16
-numComments=5

BIN
Method Fundamentals/PredicateUtilitiesTest.class View File


+ 0
- 29
Method Fundamentals/PredicateUtilitiesTest.ctxt View File

@@ -1,29 +0,0 @@
1
-#BlueJ class context
2
-comment0.target=PredicateUtilitiesTest
3
-comment0.text=\n\ The\ test\ class\ PredicateUtilitiesTest.\n\n\ @author\ \ (your\ name)\n\ @version\ (a\ version\ number\ or\ a\ date)\n
4
-comment1.params=
5
-comment1.target=PredicateUtilitiesTest()
6
-comment1.text=\n\ Default\ constructor\ for\ test\ class\ PredicateUtilitiesTest\n
7
-comment10.params=
8
-comment10.target=void\ testGreaterOrEqual1()
9
-comment11.params=
10
-comment11.target=void\ testGreaterOrEqual2()
11
-comment2.params=
12
-comment2.target=void\ setUp()
13
-comment2.text=\n\ Sets\ up\ the\ test\ fixture.\n\n\ Called\ before\ every\ test\ case\ method.\n
14
-comment3.params=
15
-comment3.target=void\ tearDown()
16
-comment3.text=\n\ Tears\ down\ the\ test\ fixture.\n\n\ Called\ after\ every\ test\ case\ method.\n
17
-comment4.params=
18
-comment4.target=void\ testGreaterThanTrue()
19
-comment5.params=
20
-comment5.target=void\ testGreaterThanFalse()
21
-comment6.params=
22
-comment6.target=void\ testLessThanTrue()
23
-comment7.params=
24
-comment7.target=void\ testLessThan1()
25
-comment8.params=
26
-comment8.target=void\ testLessOrEqual1()
27
-comment9.params=
28
-comment9.target=void\ testLessOrEqual2()
29
-numComments=12

BIN
Method Fundamentals/StringUtilities.class View File


+ 0
- 34
Method Fundamentals/StringUtilities.ctxt View File

@@ -1,34 +0,0 @@
1
-#BlueJ class context
2
-comment0.target=StringUtilities
3
-comment0.text=\n\ Created\ by\ dan\ on\ 6/14/17.\n
4
-comment1.params=
5
-comment1.target=java.lang.String\ getHelloWorld()
6
-comment1.text=\n\ @return\ `Hello\ World`\ as\ a\ string\n
7
-comment10.params=stringToReverse
8
-comment10.target=java.lang.String\ reverse(java.lang.String)
9
-comment10.text=\n\ @param\ stringToReverse\n\ @return\ an\ identical\ string\ with\ characters\ in\ reverse\ order.\n
10
-comment2.params=firstSegment\ secondSegment
11
-comment2.target=java.lang.String\ concatenation(java.lang.String,\ java.lang.String)
12
-comment2.text=\n\ @param\ firstSegment\ a\ string\ to\ be\ added\ to\n\ @param\ secondSegment\ a\ string\ to\ add\n\ @return\ the\ concatenation\ of\ two\ strings,\ `firstSegment`,\ and\ `secondSegment`\n
13
-comment3.params=firstSegment\ secondSegment
14
-comment3.target=java.lang.String\ concatenation(int,\ java.lang.String)
15
-comment3.text=\n\ @param\ firstSegment\ a\ string\ to\ be\ added\ to\n\ @param\ secondSegment\ a\ string\ to\ add\n\ @return\ the\ concatenation\ of\ an\ integer,\ `firstSegment`,\ and\ a\ String,\ `secondSegment`\n
16
-comment4.params=input
17
-comment4.target=java.lang.String\ getPrefix(java.lang.String)
18
-comment4.text=\n\ @param\ input\ a\ string\ to\ be\ manipulated\n\ @return\ the\ first\ 3\ characters\ of\ `input`\n
19
-comment5.params=input
20
-comment5.target=java.lang.String\ getSuffix(java.lang.String)
21
-comment5.text=\n\ @param\ input\ a\ string\ to\ be\ manipulated\n\ @return\ the\ last\ 3\ characters\ of\ `input`\n
22
-comment6.params=inputValue\ comparableValue
23
-comment6.target=java.lang.Boolean\ compareTwoStrings(java.lang.String,\ java.lang.String)
24
-comment6.text=\n\ @param\ inputValue\ the\ value\ to\ be\ compared\n\ @param\ comparableValue\ the\ value\ to\ be\ compared\ against\n\ @return\ the\ equivalence\ of\ two\ strings,\ `inputValue`\ and\ `comparableValue`\n
25
-comment7.params=inputValue
26
-comment7.target=java.lang.Character\ getMiddleCharacter(java.lang.String)
27
-comment7.text=\n\ @param\ inputValue\ the\ value\ input\ from\ user\n\ @return\ the\ middle\ character\ of\ `inputValue`\n
28
-comment8.params=spaceDelimitedString
29
-comment8.target=java.lang.String\ getFirstWord(java.lang.String)
30
-comment8.text=\n\ @param\ spaceDelimitedString\ a\ string,\ representative\ of\ a\ sentence,\ containing\ spaces\n\ @return\ the\ first\ sequence\ of\ characters\n
31
-comment9.params=spaceDelimitedString
32
-comment9.target=java.lang.String\ getSecondWord(java.lang.String)
33
-comment9.text=\n\ @param\ spaceDelimitedString\ a\ string\ delimited\ by\ spaces\n\ @return\ the\ second\ word\ of\ a\ string\ delimited\ by\ spaces.\n
34
-numComments=11

BIN
Method Fundamentals/StringUtilitiesTest.class View File


+ 0
- 37
Method Fundamentals/StringUtilitiesTest.ctxt View File

@@ -1,37 +0,0 @@
1
-#BlueJ class context
2
-comment0.target=StringUtilitiesTest
3
-comment0.text=\n\ The\ test\ class\ StringUtilitiesTest.\n\n\ @author\ \ (your\ name)\n\ @version\ (a\ version\ number\ or\ a\ date)\n
4
-comment1.params=
5
-comment1.target=StringUtilitiesTest()
6
-comment1.text=\n\ Default\ constructor\ for\ test\ class\ StringUtilitiesTest\n
7
-comment10.params=
8
-comment10.target=void\ compareToTestNotEquals()
9
-comment11.params=
10
-comment11.target=void\ getTheMiddleChar1()
11
-comment12.params=
12
-comment12.target=void\ getTheMiddleChar2()
13
-comment13.params=
14
-comment13.target=void\ getTheFirstWord()
15
-comment14.params=
16
-comment14.target=void\ getTheSecondWord()
17
-comment15.params=
18
-comment15.target=void\ reverseThem()
19
-comment2.params=
20
-comment2.target=void\ setUp()
21
-comment2.text=\n\ Sets\ up\ the\ test\ fixture.\n\n\ Called\ before\ every\ test\ case\ method.\n
22
-comment3.params=
23
-comment3.target=void\ tearDown()
24
-comment3.text=\n\ Tears\ down\ the\ test\ fixture.\n\n\ Called\ after\ every\ test\ case\ method.\n
25
-comment4.params=
26
-comment4.target=void\ getHelloWorldTest()
27
-comment5.params=
28
-comment5.target=void\ concatenationStringTest()
29
-comment6.params=
30
-comment6.target=void\ concatenationStringAndIntegerTest()
31
-comment7.params=
32
-comment7.target=void\ substringBeginTest()
33
-comment8.params=
34
-comment8.target=void\ substringEndTest()
35
-comment9.params=
36
-comment9.target=void\ compareToTestEquals()
37
-numComments=16