Example #1
0
 public void PutInstanceProperty(string name, LayeProperty property)
 {
     if (name == null)
         throw new ArgumentNullException();
     else if (property == null)
         throw new ArgumentNullException();
     if (instanceFields.Contains(name))
         return;
     instanceProperties[name] = property;
 }
Example #2
0
 public void PutInstanceOperatorIndex(string op, LayeProperty property)
 {
     if (op == null)
         throw new ArgumentNullException();
     else if (property == null)
         throw new ArgumentNullException();
     instanceOperatorIndex[op] = property;
 }