Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <!DOCTYPE HTML><%@page import="java.util.*"%>
  2. <%@page import="edu.southeasttech.cis249.*"%>
  3. <%@page import = "edu.southeasttech.cis249.Animal" %>
  4. <%@page import = "edu.southeasttech.cis249.Cow" %>
  5. <%@page import = "edu.southeasttech.cis249.Horse" %>
  6. <%@page import = "edu.southeasttech.cis249.Pig" %>
  7. <%@page language="java" contentType="text/html; charset=ISO-8859-1"
  8. pageEncoding="ISO-8859-1"%>
  9. <html>
  10. <head>
  11. <title>Farm</title>
  12. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  13. </head>
  14. <body>
  15. <%
  16. List<Animal> animalList = new ArrayList<Animal>();
  17. animalList.add(new Cow());
  18. animalList.add(new Pig());
  19. animalList.add(new Horse());
  20.  
  21. for (Animal animal : animalList) {
  22. out.println(animal.toString() + "<br/>");
  23. }
  24. %>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement