Merge pull request #6093 from urvyagrawal/BAEL-2543

Adding files for BAEL-2543
This commit is contained in:
Eric Martin
2019-01-12 17:12:13 -06:00
committed by GitHub
6 changed files with 76 additions and 0 deletions
@@ -0,0 +1,5 @@
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 {
}