示例#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 Field23S newInstance(Field23S source)
        {
            Field23S cp = new Field23S();

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

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