Adding files for BAEL-2543

This commit is contained in:
Urvy Agrawal
2019-01-07 22:03:52 +05:30
parent 0e69cd5ab4
commit 115a52a124
6 changed files with 69 additions and 0 deletions
@@ -0,0 +1,4 @@
package com.baeldung.keyword;
public class Circle extends Round implements Shape {
}
@@ -0,0 +1,4 @@
package com.baeldung.keyword;
public class Ring extends Round {
}
@@ -0,0 +1,4 @@
package com.baeldung.keyword;
public class Round {
}
@@ -0,0 +1,4 @@
package com.baeldung.keyword;
public interface Shape {
}
@@ -0,0 +1,4 @@
package com.baeldung.keyword;
public class Triangle implements Shape {
}