コード例 #1
0
        private void  fromJSONCommunicationType(JSONValue json_value, bool ignore_extras)
        {
            Debug.Assert(json_value != null);
            CommunicationTypeJSON convert_classy = CommunicationTypeJSON.from_json(json_value, ignore_extras, true);

            setCommunicationType(convert_classy);
        }
コード例 #2
0
        protected override void handle_result(TypeValue new_value)
        {
            CommunicationTypeJSON result = new CommunicationTypeJSON();

            result.setValue(new_value);
            handle_result(result);
        }
コード例 #3
0
 public void setCommunicationType(CommunicationTypeJSON new_value)
 {
     if (flagHasCommunicationType)
     {
     }
     flagHasCommunicationType = true;
     storeCommunicationType   = new_value;
 }
コード例 #4
0
 protected override void handle_result(CommunicationTypeJSON result)
 {
     top.value.Add(result);
 }
コード例 #5
0
        protected override void handle_result(CommunicationTypeJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
コード例 #6
0
 protected abstract void handle_result(CommunicationTypeJSON new_result);