Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
public
class
Circle
implements
Shape
{
@Override
public
void
draw
(
)
{
System
.
out
.
println
(
"Inside Circle::draw() method."
)
;
}
}