示例#1
0
        /// <summary>
        /// Copy constructor.<br>
        /// Initializes the components list with a deep copy of the source components list. </summary>
        /// <param name="source"> a field instance to copy
        /// @since 7.7 </param>
        public static Field12 newInstance(Field12 source)
        {
            Field12 cp = new Field12();

            cp.Components = new List <>(source.Components);
            return(cp);
        }
示例#2
0
        public static Field12 fromJson(string json)
        {
            Field12    field      = new Field12();
            JsonParser parser     = new JsonParser();
            JsonObject jsonObject = (JsonObject)parser.parse(json);

            if (jsonObject.get("messageType") != null)
            {
                field.Component1 = jsonObject.get("messageType").AsString;
            }
            return(field);
        }