Skip to content

Commit 37a6967

Browse files
committed
feb 2
1 parent ef4ac14 commit 37a6967

41 files changed

Lines changed: 19 additions & 242 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Later/AbstractClass/AbstractClass_1/AbstractClassDemo/.classpath renamed to BasicJava/FinalMethodDemo-App/FinalMethodDemo/.classpath

File renamed without changes.

Later/AbstractClass/AbstractClass_1/AbstractClassDemo/.project renamed to BasicJava/FinalMethodDemo-App/FinalMethodDemo/.project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
3-
<name>AbstractClassDemo</name>
3+
<name>FinalMethodDemo</name>
44
<comment></comment>
55
<projects>
66
</projects>

Later/AbstractClass/AbstractClass_1/AbstractClassDemo/.settings/org.eclipse.jdt.core.prefs renamed to BasicJava/FinalMethodDemo-App/FinalMethodDemo/.settings/org.eclipse.jdt.core.prefs

File renamed without changes.
325 Bytes
Binary file not shown.
465 Bytes
Binary file not shown.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
public class Person
2+
{
3+
4+
final public int getNumberOfLegs()
5+
{
6+
return 2;
7+
}
8+
9+
}
10+
11+
class Student extends Person
12+
{
13+
public int getNumberOfLegs()
14+
{
15+
return 8;
16+
}
17+
18+
}
Binary file not shown.
Binary file not shown.
Binary file not shown.

Later/AbstractClass/AbstractClass_1/AbstractClassDemo/src/AbstractClassTest.java

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)