Inheritance: FanObj, Facet
Beispiel #1
0
 public static FacetMeta make(Func func)
 {
     FacetMeta self = new FacetMeta();
       if (func != null)
       {
     func.enterCtor(self);
     func.call(self);
     func.exitCtor();
       }
       return self;
 }
Beispiel #2
0
        public static FacetMeta make(Func func)
        {
            FacetMeta self = new FacetMeta();

            if (func != null)
            {
                func.enterCtor(self);
                func.call(self);
                func.exitCtor();
            }
            return(self);
        }