in reply to Re: reading a java program
in thread reading a java program
It is ok.. it reads the whole line in one shot. But if i have something likepublic void method1(String str1);
Then it reads this sentence as two lines. My requirement is i need to comment this line using java comments . Using my script now it happpens aspublic void method1(String str1, String str2);
Here the second line also has to be commented. Is there any way by which i can solve this problem????????????/*public void method1(String str1,*/ String str2);
|
|---|