コード例 #1
0
        protected override void finish()
        {
            if (!(getNavigationCommandJSONKey().Equals("NavigationCancelCommand")))
            {
                throw new Exception("The key field has a value other than `NavigationCancelCommand'.");
            }
            NavigationCancelCommandJSON result = new NavigationCancelCommandJSON();

            Debug.Assert(result != null);
            finish(result);
            handle_result(result);
        }
コード例 #2
0
 protected override void handle_result(NavigationCancelCommandJSON result)
 {
     top.value.Add(result);
 }
コード例 #3
0
        protected override void handle_result(NavigationCancelCommandJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
コード例 #4
0
 protected abstract void handle_result(NavigationCancelCommandJSON new_result);
コード例 #5
0
 protected void finish(NavigationCancelCommandJSON result)
 {
     base.finish(result);
 }