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; }
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; }