package DifferenceOfWheels; import java.awt.*; public class DrawningOrnamentRectangle implements IOrnaments{ int CountWeel; @Override public void SetCount(int n) { CountWeel = n; } @Override public int get_count_weels() { return CountWeel; } @Override public void DrawOrnament(Graphics2D g, int x, int y) { g.setColor(Color.BLACK); g.fillOval(x, y, 25, 25); g.setColor(Color.PINK); g.fillRect(x + 5, y + 5, 15, 15); } }