Exemplo n.º 1
0
 public Main Body(params Doc[] x)
 {
     holes.Add(TemplateHole.NewElt("body", SDoc.Concat(x))); return(this);
 }
Exemplo n.º 2
0
 public Main Body(string x)
 {
     holes.Add(TemplateHole.NewText("body", x)); return(this);
 }
Exemplo n.º 3
0
 public Main Body(Doc x)
 {
     holes.Add(TemplateHole.NewElt("body", x)); return(this);
 }
Exemplo n.º 4
0
 public Main Body(IEnumerable <Doc> x)
 {
     holes.Add(TemplateHole.NewElt("body", SDoc.Concat(x))); return(this);
 }
Exemplo n.º 5
0
 public Main scripts(View <string> x)
 {
     holes.Add(TemplateHole.NewTextView("scripts", x)); return(this);
 }
Exemplo n.º 6
0
 public JobParameter Type(string x)
 {
     holes.Add(TemplateHole.NewText("type", x)); return(this);
 }
Exemplo n.º 7
0
 public Main MenuBar(IEnumerable <Doc> x)
 {
     holes.Add(TemplateHole.NewElt("menubar", SDoc.Concat(x))); return(this);
 }
Exemplo n.º 8
0
 public Main scripts(IEnumerable <Doc> x)
 {
     holes.Add(TemplateHole.NewElt("scripts", SDoc.Concat(x))); return(this);
 }
Exemplo n.º 9
0
 public Main Title(View <string> x)
 {
     holes.Add(TemplateHole.NewTextView("title", x)); return(this);
 }
Exemplo n.º 10
0
 public Main MenuBar(Doc x)
 {
     holes.Add(TemplateHole.NewElt("menubar", x)); return(this);
 }
Exemplo n.º 11
0
 public Main scripts(params Doc[] x)
 {
     holes.Add(TemplateHole.NewElt("scripts", SDoc.Concat(x))); return(this);
 }
Exemplo n.º 12
0
 public JobParameter Value(View <string> x)
 {
     holes.Add(TemplateHole.NewTextView("value", x)); return(this);
 }
Exemplo n.º 13
0
 public JobParameter Value(string x)
 {
     holes.Add(TemplateHole.NewText("value", x)); return(this);
 }
Exemplo n.º 14
0
 public Main Body(View <string> x)
 {
     holes.Add(TemplateHole.NewTextView("body", x)); return(this);
 }
Exemplo n.º 15
0
 public Main MenuBar(params Doc[] x)
 {
     holes.Add(TemplateHole.NewElt("menubar", SDoc.Concat(x))); return(this);
 }
Exemplo n.º 16
0
 public Main scripts(Doc x)
 {
     holes.Add(TemplateHole.NewElt("scripts", x)); return(this);
 }
Exemplo n.º 17
0
 public Main MenuBar(string x)
 {
     holes.Add(TemplateHole.NewText("menubar", x)); return(this);
 }
Exemplo n.º 18
0
 public Main scripts(string x)
 {
     holes.Add(TemplateHole.NewText("scripts", x)); return(this);
 }
Exemplo n.º 19
0
 public Main MenuBar(View <string> x)
 {
     holes.Add(TemplateHole.NewTextView("menubar", x)); return(this);
 }
Exemplo n.º 20
0
 public Main Title(string x)
 {
     holes.Add(TemplateHole.NewText("title", x)); return(this);
 }
Exemplo n.º 21
0
 public JobParameter Ordinal(View <string> x)
 {
     holes.Add(TemplateHole.NewTextView("ordinal", x)); return(this);
 }