<%@ page contentType="image/svg-xml" %> <%@ page import="com.agile.libtemplate.*,java.io.*" buffer="16kb" %> // Include a static Global Info Table AC to diplay XML-data // The Airlene's AC calls function "flight_info_table.Display_info" <%@ include file="info_table.jsp" %> <% PrintWriter pw=new PrintWriter(out,true); AC_Info aci = new AC_Info(request, application); String data_url = "get_info.jsp"; data_url = null; // Instantiate the ATC for each City. ATC_CF Atc1 = new ATC_CF (aci, "SFO", data_url,"register_with_timer_obj"); ATC_CF Atc2 = new ATC_CF (aci, "LAX", data_url,"register_with_timer_obj"); ATC_CF Atc3 = new ATC_CF (aci, "JFK", data_url,"register_with_timer_obj"); // Pass the City information to a Rotata banner Component ATC_CF City_list[] = {Atc1, Atc2, Atc3}; RotateBanner3 RB = new RotateBanner3(aci, City_list, 3); RB.CGM(pw); %> <% // Control the Rotate banner component using a Radio-button group. String RadioB_list[] = { "SFO-San Francisco", "LAX-Las Angles", "JFK-New yark" }; RadioButtons RadioB = new RadioButtons (aci, RadioB_list, 3); RadioB.setCB_AddMethod("switch_the_city"); RadioB.CGM(pw); %>