Валидатор выдает про уникальность идентификатора
package com.javarush.task.task05.task0513;
/*
Собираем прямоугольник
*/
public class Rectangle {
public int top;
public int left;
public int height;
public int width;
public void initialize(int top,int left,int height,int width){
this.top=top;
this.left=left;
this.height=height;
this.width=width;}
public void initialize(int top,int left,int height,int width){
this.top=top;
this.left=left;
this.height=0;
this.width=0;}
public void initialize(int top,int left,int height,int width){
this.top=top;
this.left=left;
this.height=width;
this.width=width;}
public void initialize(int top,int left,int height,int width){
this.top=top;
this.left=left;
this.height=height;
this.width=width;}//напишите тут ваш код
public static void main(String[] args) {
}
}