Examples of ShipsCrew


Examples of net.coljac.pirates.ShipsCrew

    html.append("<html><table width=\"310px\" border=\"1\" cellspacing=\"0\" cellpadding=\"4\">");
    html.append("<tr bgcolor=\"#EEEEEE\"><td align=\"center\" colspan=\"2\"> Fleet: " + fleet.getName() + "</td></tr>");

    for (Ship s : fleet.getShips()) {
      html.append("<tr><td>" + s.getPoints() + "</td><td> " + s.getName() + "</td></tr>");
      ShipsCrew cl = fleet.getShipCrew().get(s);
      for (Crew crew : cl.getCrewList()) {
        html.append("<tr><td>" + crew.getPoints() + "</td><td>&nbsp;&nbsp;&nbsp<i>" + crew.getName() + "</i></td></tr>");
      }
    }
    for (Crew crew : fleet.getCrew()) {
      html.append("<tr><td>" + crew.getPoints() + "</td><td><i>" + crew.getName() + "</i></td></tr>");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.