<%@ page import="java.util.*" %> <%@page import="soccer.*" %> Soccer League Results

Little league soccer results

<% theLeague.doSearch(); %> <% if(theLeague.numGames()==0) { %>

There haven't been any such games yet. But the season is young; come back again soon. <% } else { %> <% Iterator it = theLeague.games(); while(it.hasNext()) { SoccerGame sg = (SoccerGame) it.next(); %> <% } %>
Results
Home Team Away Team Home Team Score Away Team Score
<%= sg.getTeam1() %> <%= sg.getTeam2() %> <%= sg.getScore1() %> <%= sg.getScore2() %>
<% } %>