Beispiel #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 public ProfileGenerator(OutputLanguageType outputLanguage,
                         String nameSpace,
                         String outputDir)
 {
     CodeEditor.DebugFlag = true;
     this.OutputLanguage  = outputLanguage;
     this.NameSpace       = nameSpace;
     this.OutputDir       = outputDir;
 }
Beispiel #2
0
 public GenerateItem(ProfileGenerator gen,
                     String nameSpace,
                     String name,
                     String profileType,
                     Type fhirType,
                     OutputLanguageType outputLanguage,
                     ElementNode profileElements)
 {
     this.gen             = gen;
     this.nameSpace       = nameSpace;
     this.name            = name;
     this.fhirType        = fhirType;
     this.outputLanguage  = outputLanguage;
     this.profileElements = profileElements;
     this.profileType     = profileType;
 }