I don't understand what this error means...
com/codegym/task/task05/task0513/Rectangle.java:25: error: method initialize(int,int,int) is already defined in class com.codegym.task.task05.task0513.Rectangle
public void initialize (int top, int left, int width){
package com.codegym.task.task05.task0513;
/*
Let's put together a rectangle
*/
public class Rectangle {
private int top;
private int left;
private int width;
private int height;
public void initialize (int top){
this.top=top;
}
public void initialize (int top, int left){
this.top=top;
this.left=left;
}
public void initialize (int top, int left, int width){
this.top=top;
this.left=left;
this.width=width;
}
public void initialize (int top, int left, int width){
this.top=top;
this.left=left;
this.width=width;
this.height=height;
}//write your code here
public static void main(String[] args) {
}
}