テーブルの行をダンプする JSP でメソッドを作成しています。
<%!
void dumpRows(List<MyClass> obList){
int a = 10;
for(int i = 0; i<100; i++){
%>
//lots of HTML code which uses the variables from the dumpRows method
<td> <%=a*i%> </td>
<%
}//for loop ends
}//method ends
%>
しかし、それはエラーになっています。JSP の文法に問題があります。どうすればそれを達成できるか教えてください