예제 #1
0
 public Main Body(params Doc[] x)
 {
     holes.Add(TemplateHole.NewElt("body", SDoc.Concat(x))); return(this);
 }
예제 #2
0
 public Main Body(string x)
 {
     holes.Add(TemplateHole.NewText("body", x)); return(this);
 }
예제 #3
0
 public Main Body(Doc x)
 {
     holes.Add(TemplateHole.NewElt("body", x)); return(this);
 }
예제 #4
0
 public Main Body(IEnumerable <Doc> x)
 {
     holes.Add(TemplateHole.NewElt("body", SDoc.Concat(x))); return(this);
 }
예제 #5
0
파일: Main.g.cs 프로젝트: to11mtm/OddJob
 public Main scripts(View <string> x)
 {
     holes.Add(TemplateHole.NewTextView("scripts", x)); return(this);
 }
예제 #6
0
 public JobParameter Type(string x)
 {
     holes.Add(TemplateHole.NewText("type", x)); return(this);
 }
예제 #7
0
 public Main MenuBar(IEnumerable <Doc> x)
 {
     holes.Add(TemplateHole.NewElt("menubar", SDoc.Concat(x))); return(this);
 }
예제 #8
0
 public Main scripts(IEnumerable <Doc> x)
 {
     holes.Add(TemplateHole.NewElt("scripts", SDoc.Concat(x))); return(this);
 }
예제 #9
0
 public Main Title(View <string> x)
 {
     holes.Add(TemplateHole.NewTextView("title", x)); return(this);
 }
예제 #10
0
 public Main MenuBar(Doc x)
 {
     holes.Add(TemplateHole.NewElt("menubar", x)); return(this);
 }
예제 #11
0
 public Main scripts(params Doc[] x)
 {
     holes.Add(TemplateHole.NewElt("scripts", SDoc.Concat(x))); return(this);
 }
예제 #12
0
 public JobParameter Value(View <string> x)
 {
     holes.Add(TemplateHole.NewTextView("value", x)); return(this);
 }
예제 #13
0
 public JobParameter Value(string x)
 {
     holes.Add(TemplateHole.NewText("value", x)); return(this);
 }
예제 #14
0
 public Main Body(View <string> x)
 {
     holes.Add(TemplateHole.NewTextView("body", x)); return(this);
 }
예제 #15
0
 public Main MenuBar(params Doc[] x)
 {
     holes.Add(TemplateHole.NewElt("menubar", SDoc.Concat(x))); return(this);
 }
예제 #16
0
 public Main scripts(Doc x)
 {
     holes.Add(TemplateHole.NewElt("scripts", x)); return(this);
 }
예제 #17
0
 public Main MenuBar(string x)
 {
     holes.Add(TemplateHole.NewText("menubar", x)); return(this);
 }
예제 #18
0
파일: Main.g.cs 프로젝트: to11mtm/OddJob
 public Main scripts(string x)
 {
     holes.Add(TemplateHole.NewText("scripts", x)); return(this);
 }
예제 #19
0
 public Main MenuBar(View <string> x)
 {
     holes.Add(TemplateHole.NewTextView("menubar", x)); return(this);
 }
예제 #20
0
파일: Main.g.cs 프로젝트: to11mtm/OddJob
 public Main Title(string x)
 {
     holes.Add(TemplateHole.NewText("title", x)); return(this);
 }
예제 #21
0
 public JobParameter Ordinal(View <string> x)
 {
     holes.Add(TemplateHole.NewTextView("ordinal", x)); return(this);
 }