コード例 #1
0
ファイル: TBean.cs プロジェクト: focus-creative-games/luban
 private TBean(bool isNullable, Dictionary <string, string> attrs, DefBeanBase defBean) : base(isNullable, attrs)
 {
     this.Bean = defBean;
 }
コード例 #2
0
ファイル: TBean.cs プロジェクト: zhangga/luban
 // TODO bean 允许指定是否可空
 public TBean(DefBeanBase defBean, bool isNullable) : base(defBean.IsAbstractType)
 {
     this.Bean = defBean;
 }
コード例 #3
0
ファイル: TBean.cs プロジェクト: focus-creative-games/luban
 public static TBean Create(bool isNullable, DefBeanBase defBean, Dictionary <string, string> tags)
 {
     // TODO
     return(new TBean(isNullable, DefUtil.MergeTags(defBean.Tags, tags), defBean));
 }