Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1c16836d9f7563e6dc5bd0fac71d10d9a1530286 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package templates;

import org.gastro.inventory.MenuCard;
import org.gastro.inventory.Offering;
import org.gastro.inventory.Section;
import org.gastro.server.internal.web.GastroServlet;

public class MenuCardTemplate
{
  protected static String nl;

  public static synchronized MenuCardTemplate create(String lineSeparator)
  {
    nl = lineSeparator;
    MenuCardTemplate result = new MenuCardTemplate();
    nl = null;
    return result;
  }

  public final String NL = nl == null ? (System.getProperties().getProperty("line.separator")) : nl;

  protected final String TEXT_1 = "\t";

  protected final String TEXT_2 = NL + NL + "<html>" + NL + "  <header>" + NL + "\t  <title>" + NL + "\t\t\t";

  protected final String TEXT_3 = NL + "\t  </title>" + NL
      + "\t\t<link media=\"screen\" href=\"gastro.css\" type=\"text/css\" rel=\"stylesheet\">" + NL + "\t<header>" + NL
      + "<body>" + NL + "<h1>";

  protected final String TEXT_4 = "</h1>" + NL + "<table border=\"0\" width=\"400\">";

  protected final String TEXT_5 = NL + "\t<tr><td colspan=\"3\"><h2>";

  protected final String TEXT_6 = "</h2></td></tr>" + NL + "\t<tr><td colspan=\"3\"><h4>";

  protected final String TEXT_7 = "</h4></td></tr>" + NL + "\t";

  protected final String TEXT_8 = NL + "\t\t<tr><td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td><td colspan=\"2\"><h3>";

  protected final String TEXT_9 = "</h3></td></tr>" + NL + "\t\t<tr><td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td><td>";

  protected final String TEXT_10 = "</td>" + NL + "\t\t\t\t\t<td align=\"right\" valign=\"bottom\" width=\"80\">";

  protected final String TEXT_11 = " </td></tr>" + NL + "\t";

  protected final String TEXT_12 = NL + "</table>" + NL + "</body>" + NL + "</html>";

  protected final String TEXT_13 = NL;

  public String generate(Object argument)
  {
    final StringBuffer stringBuffer = new StringBuffer();
    stringBuffer.append(TEXT_1);
    MenuCard menuCard = (MenuCard)argument;
    stringBuffer.append(TEXT_2);
    stringBuffer.append(GastroServlet.html(menuCard.getTitle()));
    stringBuffer.append(TEXT_3);
    stringBuffer.append(GastroServlet.html(menuCard.getTitle()));
    stringBuffer.append(TEXT_4);
    for (Section section : menuCard.getSections())
    {
      stringBuffer.append(TEXT_5);
      stringBuffer.append(GastroServlet.html(section.getTitle()));
      stringBuffer.append(TEXT_6);
      stringBuffer.append(GastroServlet.html(section.getText()));
      stringBuffer.append(TEXT_7);
      for (Offering offering : section.getOfferings())
      {
        stringBuffer.append(TEXT_8);
        stringBuffer.append(GastroServlet.html(offering.getName()));
        stringBuffer.append(TEXT_9);
        stringBuffer.append(GastroServlet.html(offering.getDescription()));
        stringBuffer.append(TEXT_10);
        stringBuffer.append(GastroServlet.html(offering.getPrice()));
        stringBuffer.append(TEXT_11);
      }
    }
    stringBuffer.append(TEXT_12);
    stringBuffer.append(TEXT_13);
    return stringBuffer.toString();
  }
}

Back to the top