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

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

            return(field);
        }