// Fig. 25.14: Rotator.java // A JavaBean that rotates advertisements. package com.deitel.jhtp5.jsp; public class Rotator { private String images[] = { "images/advjHTP1.jpg", "images/cppHTP4.jpg", "images/iw3HTP2.jpg", "images/jwsFEP1.jpg", "images/vbnetHTP2.jpg" }; private String links[] = { "http://www.amazon.com/exec/obidos/ASIN/0130895601/" + "deitelassociatin", "http://www.amazon.com/exec/obidos/ASIN/0130384747/" + "deitelassociatin", "http://www.amazon.com/exec/obidos/ASIN/0130308978/" + "deitelassociatin", "http://www.amazon.com/exec/obidos/ASIN/0130461342/" + "deitelassociatin", "http://www.amazon.com/exec/obidos/ASIN/0130293636/" + "deitelassociatin" }; private int selectedIndex = 0; // returns image file name for current ad public String getImage() { return images[ selectedIndex ]; } // returns the URL for ad's corresponding Web site public String getLink() { return links[ selectedIndex ]; } // update selectedIndex so next calls to getImage and // getLink return a different advertisement public void nextAd() { selectedIndex = ( selectedIndex + 1 ) % images.length; } } /************************************************************************** * (C) Copyright 1992-2003 by Deitel & Associates, Inc. and * * Prentice Hall. All Rights Reserved. * * * * DISCLAIMER: The authors and publisher of this book have used their * * best efforts in preparing the book. These efforts include the * * development, research, and testing of the theories and programs * * to determine their effectiveness. The authors and publisher make * * no warranty of any kind, expressed or implied, with regard to these * * programs or to the documentation contained in these books. The authors * * and publisher shall not be liable in any event for incidental or * * consequential damages in connection with, or arising out of, the * * furnishing, performance, or use of these programs. * *************************************************************************/