Esempio n. 1
0
 public GsaType(GwaKeyword keyword, GwaSetCommandType setCommandType, bool selfContained, params GwaKeyword[] referencedKeywords)
 {
     this.Keyword            = keyword;
     this.SetCommandType     = setCommandType;
     this.AnalysisLayer      = true;
     this.DesignLayer        = true;
     this.ReferencedKeywords = referencedKeywords == null ? new GwaKeyword[0] : referencedKeywords;
     this.SelfContained      = selfContained;
 }
Esempio n. 2
0
 public GsaType(GwaKeyword keyword, GwaSetCommandType setCommandType, bool selfContained, bool designLayer, bool analysisLayer, params GwaKeyword[] referencedKeywords)
 {
     this.Keyword            = keyword;
     this.SetCommandType     = setCommandType;
     this.AnalysisLayer      = analysisLayer;
     this.DesignLayer        = designLayer;
     this.ReferencedKeywords = referencedKeywords;
     this.SelfContained      = selfContained;
 }