Ejemplo n.º 1
0
 private TBean(bool isNullable, Dictionary <string, string> attrs, DefBeanBase defBean) : base(isNullable, attrs)
 {
     this.Bean = defBean;
 }
Ejemplo n.º 2
0
 // TODO bean 允许指定是否可空
 public TBean(DefBeanBase defBean, bool isNullable) : base(defBean.IsAbstractType)
 {
     this.Bean = defBean;
 }
Ejemplo n.º 3
0
 public static TBean Create(bool isNullable, DefBeanBase defBean, Dictionary <string, string> tags)
 {
     // TODO
     return(new TBean(isNullable, DefUtil.MergeTags(defBean.Tags, tags), defBean));
 }