|
Hi Ashok,
Why do not you return boolean value from parse method directly..?
boolean parse(){
boolean flag;
// some logic code.
// set flag
return flag;
}
after calling parse method from class A get this boolean variable and do more....
If i misunderstand then correct me.
sanjeev
|