Exemplo n.º 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 Field108 newInstance(Field108 source)
        {
            Field108 cp = new Field108();

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

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