예제 #1
0
        public AbstractMixedJsonBuilder(BuilderPolicy builderPolicy, bool threadSafe)
        {
            if (builderPolicy == null)
            {
                this.builderPolicy = DefaultBuilderPolicy.MINIJSON;
            }
            else
            {
                this.builderPolicy = builderPolicy;
            }
            this.threadSafe = threadSafe;

            //        // ???
            //        // jsonParser = new AbstractBareJsonParser() {};
            //        jsonParser = new SimpleJsonParser();
            //        // ....
        }
 public SimpleMixedJsonBuilder(BuilderPolicy builderPolicy, bool threadSafe)
     : base(builderPolicy, threadSafe)
 {
 }
 public SimpleMixedJsonBuilder(BuilderPolicy builderPolicy)
     : base(builderPolicy)
 {
 }
예제 #4
0
 public AbstractMixedJsonBuilder(BuilderPolicy builderPolicy) : this(builderPolicy, false) // true or false ????
 {
 }