コード例 #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 Field15K newInstance(Field15K source)
        {
            Field15K cp = new Field15K();

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

            return(field);
        }