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

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

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