Example #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 Field21F newInstance(Field21F source)
        {
            Field21F cp = new Field21F();

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

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