Hi All,
I have a method getPosition(
String ignoreText) which is called from other methods.
I want to store the value of ignoreText at every invocation method getPosition in a vector
For e.g.: if getPosition is called this way
getPosition("Test1");
getPosition("Test2");
getPosition("Test3");
Then the vector should contain the values Test1, Test2, Test3
I have tried with the following code snippet, however the temp vector stores only the current value of ignoreText.
Please let me know how to do this.
Thanks,
Asha>