2 same methods and parameters
Hello. I know that having 2 similar methods and parameters will not work in java but is there any way I can solve this without changing the parameters?
Here's a summarized version of my codes.
Code:
import ij.ImagePlus;
import ij.plugin.filter.PlugInFilter;
import ij.process.ImageProcessor;
import java.util.Arrays;
public class Filter_Equalize implements PlugInFilter
{
final int T = 4;
public int setup(String arg, ImagePlus img)
{
return DOES_8G;
}
public void run(ImageProcessor ip)
{
//codes goes in here...
}
public void run(ImageProcessor ip)
{
//2nd codes in here
}
}
Hope I can get some help here.
Thanks