Задача не проходит проверку, в чем ошибка?
package com.javarush.task.task05.task0512;
/*
Создать класс Circle
*/
public class Circle {
//напишите тут ваш код
int centerX;
int centerY;
int radius;
int width;
int color;
public void initialize(int centerX, int centerY, int radius){
this.centerX = centerX;
this.centerY = centerY;
this.radius = radius;
this.width = 10;
this.color = 1101;
}
public void inicialize(int centerX, int centerY, int radius, int width){
this.centerX = centerX;
this.centerY = centerY;
this.radius = radius;
this.width = width;
this.color = 21441;
}
public void inicialize(int centerX, int centerY, int radius, int width, int color){
this.centerX = centerX;
this.centerY = centerY;
this.radius = radius;
this.width = width;
this.color = color;
}
public static void main(String[] args) {
}
}