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

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

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