Пример #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 Field26A newInstance(Field26A source)
        {
            Field26A cp = new Field26A();

            cp.Components = new List <>(source.Components);
            return(cp);
        }
Пример #2
0
        public static Field26A fromJson(string json)
        {
            Field26A   field      = new Field26A();
            JsonParser parser     = new JsonParser();
            JsonObject jsonObject = (JsonObject)parser.parse(json);

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