예제 #1
0
파일: Option.cs 프로젝트: akobr/texo.ui
 public Option SetDocumentation(Documentation value)
 {
     return(SetDocumentation(new Option(this), value));
 }
예제 #2
0
 protected T SetDocumentation <T>(T cloned, Documentation value)
     where T : InputStatement
 {
     cloned.documentation = value;
     return(cloned);
 }
예제 #3
0
 public Query SetDocumentation(Documentation value)
 {
     return(SetDocumentation(new Query(this), value));
 }
예제 #4
0
 protected InputStatement()
 {
     representations = ImmutableList <string> .Empty;
     parameters      = ImmutableList <Parameter> .Empty;
     documentation   = Documentation.Empty;
 }