序列化表格

  • 程序包 org.xmeta

    • org.xmeta.ActionException扩展RuntimeException实现可序列化

      serialVersionUID:
      1L
    • org.xmeta.Bindings扩展HashMap<String,​Object>实现可序列化

      serialVersionUID:
      1L
      • 序列化字段

        • caller
          Object caller
          调用动作的对象,一般是actionContext压入栈时的对象
        • callerMethod
          String callerMethod
          调用者执行的方法名称。
        • contexts
          Map<Thing,​ActionContext> contexts
          模型动作上下文的动作上下文
        • contextThing
          Thing contextThing
          Bindings可以设置动作的上下文,2016-10-26
        • disableGloableContext
          boolean disableGloableContext
          是否关闭全局模型动作监听器,如果关闭子函数也都关闭
        • isVarScopeFlag
          boolean isVarScopeFlag
          是否是变量范围的标志,通常在函数调用(动作执行)、条件、循环等处设置为true,以便划分一个 变量范围,一般新的变量都保存到此变量范围中。 为了实现类似其他语言如java的变量范围的设置。
        • parameterScope
          boolean parameterScope
          是否是参数Bindings。
        • world
          World world
    • org.xmeta.ThingCoderException扩展RuntimeException实现可序列化

      serialVersionUID:
      1L
    • org.xmeta.XMetaException扩展RuntimeException实现可序列化

      serialVersionUID:
      1L
      • 序列化字段

        • stackTrace
          String stackTrace
          ActionContext中的StackTrace,如果存在