Example #1
0
 /// <summary>
 ///     Add a mapping from property name to maker.
 /// </summary>
 internal void AddPropertyMapping(string namespaceURI, Hashtable list)
 {
     PropertyListBuilder plb;
     plb = (PropertyListBuilder)this.propertylistTable[namespaceURI];
     if (plb == null)
     {
         plb = new PropertyListBuilder();
         plb.AddList(list);
         this.propertylistTable.Add(namespaceURI, plb);
     }
     else
     {
         plb.AddList(list);
     }
 }
Example #2
0
        /// <summary>
        ///     Add a mapping from property name to maker.
        /// </summary>
        internal void AddPropertyMapping(string namespaceURI, Hashtable list)
        {
            PropertyListBuilder plb;

            plb = (PropertyListBuilder)this.propertylistTable[namespaceURI];
            if (plb == null)
            {
                plb = new PropertyListBuilder();
                plb.AddList(list);
                this.propertylistTable.Add(namespaceURI, plb);
            }
            else
            {
                plb.AddList(list);
            }
        }