Esempio n. 1
0
 private static void RemovePartType(object bean, IList <string> pathParts)
 {
     if (CollUtils.IsNotEmpty(pathParts))
     {
         if (HasPartType(bean, pathParts[0]))
         {
             pathParts.RemoveAt(0);
         }
     }
 }
Esempio n. 2
0
 public virtual bool HasPartTypeMappings()
 {
     return(CollUtils.IsNotEmpty(this.mappings));
 }