Hi all
in code below ,after I got the object aobj ,how can I identify which
component aobj actualy is.And where is it Location ?
thank you
denny
CaretListener listener = new CaretListener() {
public void caretUpdate(CaretEvent caretEvent) {
Object aobj=caretEvent.getSource();
Component comp=aobj.
System.out.println(aobj.toString());
}
};