Exemplo n.º 1
0
        public void setMapsInMaps(String mname, String name, String value)
        {
            _ZMaps test;

            if (this.TryGetValue(mname, out test)) // Returns true.
            {
                ZMap content = test.getContent();
                content.addToMap(name, value);
            }
        }
Exemplo n.º 2
0
 public _ZMaps()
 {
     this.content = null;
     this.child   = null;
 }
Exemplo n.º 3
0
 public void setContent(ZMap content)
 {
     this.content = content;
 }