javax.swing.InputVerifier
javax.swing.InputVerifier isa abstract class and it has an abstract method
public abstract boolean verify(JComponent arg);
i like to overload this method by
public abstract boolean verify(Component arg, int x, int y);
Is overloading is possible. if so give me a suggestion for it.
thank you..

