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..

[331 byte] By [Nithyananthana] at [2007-10-3 4:17:09]
# 1
Why don't you go and try to see whether it's possible?And what kind of suggestion do you want?
CeciNEstPasUnProgrammeura at 2007-7-14 22:18:43 > top of Java-index,Java Essentials,Java Programming...
# 2
> if so give me a suggestion for it.search the forums (particularly the swing forum) for"extends InputVerifier"you'll probably find a number of examples
Michael_Dunna at 2007-7-14 22:18:43 > top of Java-index,Java Essentials,Java Programming...
# 3
> Is overloading is possible. if so give me a suggestion for it.You obviously haven't bothered to read the InputVerifier API.
camickra at 2007-7-14 22:18:43 > top of Java-index,Java Essentials,Java Programming...